diff options
-rw-r--r-- | project/cmake/modules/FindPython.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/cmake/modules/FindPython.cmake b/project/cmake/modules/FindPython.cmake index b3fae060ee..0339697d4d 100644 --- a/project/cmake/modules/FindPython.cmake +++ b/project/cmake/modules/FindPython.cmake @@ -6,7 +6,7 @@ # PYTHON_LIBRARIES - The python libraries if(PKG_CONFIG_FOUND) - pkg_check_modules(PC_PYTHON python >= 2.7 QUIET) + pkg_check_modules(PC_PYTHON python>=2.7 QUIET) endif() find_program(PYTHON_EXECUTABLE python ONLY_CMAKE_FIND_ROOT_PATH) |