diff options
author | Stefan Saraev <stefan@saraev.ca> | 2016-12-15 12:22:42 +0200 |
---|---|---|
committer | Stefan Saraev <stefan@saraev.ca> | 2016-12-15 12:22:42 +0200 |
commit | c81886ef000097040f096945e7b60ee832071993 (patch) | |
tree | 7a6946cf34496c53704f784520a8593aaa9e1431 /project | |
parent | c14cb312dc666f8cae5bbef752c4e582fefd6757 (diff) |
[cmake] FindPython: fix typo
Diffstat (limited to 'project')
-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) |