From: <ai...@us...> - 2010-12-17 01:47:53
|
Revision: 11373 http://plplot.svn.sourceforge.net/plplot/?rev=11373&view=rev Author: airwin Date: 2010-12-17 01:47:47 +0000 (Fri, 17 Dec 2010) Log Message: ----------- Drop extra "/" that was being put into drive-letter form of pathname. A nice side benefit of this change is you tighten up the logic for recognizing the leading-slash form of drive letter. Modified Paths: -------------- trunk/plplot_test/CMakeLists.txt Modified: trunk/plplot_test/CMakeLists.txt =================================================================== --- trunk/plplot_test/CMakeLists.txt 2010-12-17 01:42:06 UTC (rev 11372) +++ trunk/plplot_test/CMakeLists.txt 2010-12-17 01:47:47 UTC (rev 11373) @@ -168,7 +168,7 @@ # drive letter doesn't matter. For example converting # z:/whatever/path ==> /z/whatever/path or /Z/whatever/path works # fine for MSYS bash. - string(REGEX REPLACE "^(.):" "/\\1/" PLTCL_DIR ${PLTCL_DIR}) + string(REGEX REPLACE "^(.):/" "/\\1/" PLTCL_DIR ${PLTCL_DIR}) configure_file(test_tcl.sh.in This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |