From: <ai...@us...> - 2013-12-20 19:06:49
|
Revision: 12897 http://sourceforge.net/p/plplot/code/12897 Author: airwin Date: 2013-12-20 19:06:46 +0000 (Fri, 20 Dec 2013) Log Message: ----------- Properly escape the "\" character for MSYS_PLATFORM builds. That is, \unix ==> \\unix Modified Paths: -------------- trunk/cmake/epa_build/tcl/CMakeLists.txt trunk/cmake/epa_build/tk/CMakeLists.txt Modified: trunk/cmake/epa_build/tcl/CMakeLists.txt =================================================================== --- trunk/cmake/epa_build/tcl/CMakeLists.txt 2013-12-20 18:13:59 UTC (rev 12896) +++ trunk/cmake/epa_build/tcl/CMakeLists.txt 2013-12-20 19:06:46 UTC (rev 12897) @@ -48,7 +48,7 @@ # version of configure may be good enough for our needs for all # platforms. if(MSYS_PLATFORM) - set(source_PATH ${source_PATH}\unix) + set(source_PATH ${source_PATH}\\unix) else(MSYS_PLATFORM) set(source_PATH ${source_PATH}/unix) endif(MSYS_PLATFORM) Modified: trunk/cmake/epa_build/tk/CMakeLists.txt =================================================================== --- trunk/cmake/epa_build/tk/CMakeLists.txt 2013-12-20 18:13:59 UTC (rev 12896) +++ trunk/cmake/epa_build/tk/CMakeLists.txt 2013-12-20 19:06:46 UTC (rev 12897) @@ -48,7 +48,7 @@ # version of configure may be good enough for our needs for all # platforms. if(MSYS_PLATFORM) - set(source_PATH ${source_PATH}\unix) + set(source_PATH ${source_PATH}\\unix) else(MSYS_PLATFORM) set(source_PATH ${source_PATH}/unix) endif(MSYS_PLATFORM) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |