aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorStefan Saraev <stefan@saraev.ca>2016-12-15 12:22:42 +0200
committerStefan Saraev <stefan@saraev.ca>2016-12-15 12:22:42 +0200
commitc81886ef000097040f096945e7b60ee832071993 (patch)
tree7a6946cf34496c53704f784520a8593aaa9e1431 /project
parentc14cb312dc666f8cae5bbef752c4e582fefd6757 (diff)
[cmake] FindPython: fix typo
Diffstat (limited to 'project')
-rw-r--r--project/cmake/modules/FindPython.cmake2
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)