From: <ai...@us...> - 2009-06-28 06:13:09
|
Revision: 10083 http://plplot.svn.sourceforge.net/plplot/?rev=10083&view=rev Author: airwin Date: 2009-06-28 06:13:08 +0000 (Sun, 28 Jun 2009) Log Message: ----------- Supress nonconsequential CMake warning message by making endif tag match the corresponding if tag. Modified Paths: -------------- trunk/cmake/modules/qt.cmake Modified: trunk/cmake/modules/qt.cmake =================================================================== --- trunk/cmake/modules/qt.cmake 2009-06-28 02:47:15 UTC (rev 10082) +++ trunk/cmake/modules/qt.cmake 2009-06-28 06:13:08 UTC (rev 10083) @@ -174,7 +174,7 @@ "WARNING: could not find sip flags so setting ENABLE_pyqt4 to OFF." ) set(ENABLE_pyqt4 OFF CACHE BOOL "Enable pyqt4 Python extension module " FORCE) - endif(PYQT_SIP_DIR_ERR) + endif(PYQT_SIP_FLAGS_ERR) # Must change from blank-delimited string to CMake list so that sip # COMMAND will work properly with these flags later on. string(REGEX REPLACE " " ";"PYQT_SIP_FLAGS "${PYQT_SIP_FLAGS}") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |