[Cmake-commits] CMake branch, next, updated. v2.8.8-3017-g2bc3ff0
Rolf Eike Beer
eike at sf-mail.de
Tue Jun 5 15:00:08 EDT 2012
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 2bc3ff0e0c1b12d7eba5306c3b66aad1fbddc881 (commit)
via b2f8fab0efc15e5353e1223a42796821e8b77bf2 (commit)
from dd183c4fba35559698d964fa28ffd05793ea7508 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2bc3ff0e0c1b12d7eba5306c3b66aad1fbddc881
commit 2bc3ff0e0c1b12d7eba5306c3b66aad1fbddc881
Merge: dd183c4 b2f8fab
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Tue Jun 5 15:00:06 2012 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jun 5 15:00:06 2012 -0400
Merge topic 'FindPythonLibs-13216' into next
b2f8fab FindPythonLibs: fix syntax error
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b2f8fab0efc15e5353e1223a42796821e8b77bf2
commit b2f8fab0efc15e5353e1223a42796821e8b77bf2
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Tue Jun 5 20:56:53 2012 +0200
Commit: Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Tue Jun 5 20:56:53 2012 +0200
FindPythonLibs: fix syntax error
diff --git a/Modules/FindPythonLibs.cmake b/Modules/FindPythonLibs.cmake
index 9901374..11ff196 100644
--- a/Modules/FindPythonLibs.cmake
+++ b/Modules/FindPythonLibs.cmake
@@ -46,12 +46,12 @@ IF(PythonLibs_FIND_VERSION)
STRING(REGEX REPLACE "^([0-9]+).*" "\\1" _PYTHON_FIND_MAJ "${_PYTHON_FIND_MAJ_MIN}")
UNSET(_PYTHON_FIND_OTHER_VERSIONS)
IF(PythonLibs_FIND_VERSION_EXACT)
- IF (_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
+ IF(_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
SET(_PYTHON_FIND_OTHER_VERSIONS "${PythonLibs_FIND_VERSION}")
- ELSE (_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
+ ELSE(_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
SET(_PYTHON_FIND_OTHER_VERSIONS "${PythonLibs_FIND_VERSION}" "${_PYTHON_FIND_MAJ_MIN}")
- ENDIF (_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
- ENDIF(PythonLibs_FIND_VERSION_EXACT)
+ ENDIF(_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
+ ELSE(PythonLibs_FIND_VERSION_EXACT)
FOREACH(_PYTHON_V ${_PYTHON${_PYTHON_FIND_MAJ}_VERSIONS})
IF(NOT _PYTHON_V VERSION_LESS _PYTHON_FIND_MAJ_MIN)
LIST(APPEND _PYTHON_FIND_OTHER_VERSIONS ${_PYTHON_V})
-----------------------------------------------------------------------
Summary of changes:
Modules/FindPythonLibs.cmake | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list