[cmake-commits] alex committed cmIfCommand.cxx 1.80 1.81

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Aug 29 14:35:08 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv8288

Modified Files:
	cmIfCommand.cxx 
Log Message:
BUG: this seems to fix the regexp result-storage problem, now it seems the actual result is tored instead of "1" , as it happened for StringFileTest on Windows

Alex


Index: cmIfCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmIfCommand.cxx,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- cmIfCommand.cxx	29 Aug 2007 15:58:38 -0000	1.80
+++ cmIfCommand.cxx	29 Aug 2007 18:35:06 -0000	1.81
@@ -384,8 +384,8 @@
           }
         if (regEntry.find(def))
           {
-          *arg = "1";
           cmStringCommand::StoreMatches(makefile, regEntry);
+          *arg = "1";
           }
         else
           {



More information about the Cmake-commits mailing list