From: Sarah Hoffmann Date: Tue, 2 Feb 2021 09:33:15 +0000 (+0100) Subject: remove pyosmium-get-changes detection from cmake X-Git-Tag: v3.7.0~45 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/59cb1d6c279655937fa24fe5f84fd00b89cbea31 remove pyosmium-get-changes detection from cmake pyosmium-get-changes is not longer used. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d579bf1a..f5820c7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,20 +57,11 @@ endif() #----------------------------------------------------------------------------- -# python and pyosmium (imports/updates only) +# python (imports/updates only) #----------------------------------------------------------------------------- if (BUILD_IMPORTER) find_package(PythonInterp 3.5 REQUIRED) - - find_program(PYOSMIUM pyosmium-get-changes) - if (NOT EXISTS "${PYOSMIUM}") - set(PYOSMIUM_PATH "") - message(WARNING "pyosmium-get-changes not found (required for updates)") - else() - set(PYOSMIUM_PATH "${PYOSMIUM}") - message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}") - endif() endif() #-----------------------------------------------------------------------------