From: <ai...@us...> - 2013-10-11 05:14:49
|
Revision: 12586 http://sourceforge.net/p/plplot/code/12586 Author: airwin Date: 2013-10-11 05:14:45 +0000 (Fri, 11 Oct 2013) Log Message: ----------- Fix a typo (missing blank delimiter after the fourth quote) in the string(REGEX REPLACE " " ";" PYQT_SIP_FLAGS "${PYQT_SIP_FLAGS}") command. This issue was discovered by CMake-2.8.12. This should have produced a wrong number of arguments error in the past for this command but somehow did not so I think previous CMake versions did not demand a blank after string to delimit the next argument so all was well. Anyhow, this issue did not appear to cause problems in the past for our pyqt4 results, but nevertheless it is good to fix this issue. Tested by Alan W. Irwin <ai...@us...> using the test_pyqt4_example target. Modified Paths: -------------- trunk/cmake/modules/qt.cmake Modified: trunk/cmake/modules/qt.cmake =================================================================== --- trunk/cmake/modules/qt.cmake 2013-10-11 04:47:25 UTC (rev 12585) +++ trunk/cmake/modules/qt.cmake 2013-10-11 05:14:45 UTC (rev 12586) @@ -212,5 +212,5 @@ 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}") + string(REGEX REPLACE " " ";" PYQT_SIP_FLAGS "${PYQT_SIP_FLAGS}") endif(ENABLE_pyqt4) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |