[cmake-commits] hoffman committed cmLocalGenerator.cxx 1.170 1.171

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Jan 23 14:28:42 EST 2007


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

Modified Files:
	cmLocalGenerator.cxx 
Log Message:
ENH: this does not need to be safe as the value is checked


Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -d -r1.170 -r1.171
--- cmLocalGenerator.cxx	23 Jan 2007 18:08:40 -0000	1.170
+++ cmLocalGenerator.cxx	23 Jan 2007 19:28:40 -0000	1.171
@@ -1077,7 +1077,7 @@
   const char* sysIncludeFlag = 0;
   if(repeatFlag)
     {
-    sysIncludeFlag = this->Makefile->GetSafeDefinition(sysFlagVar.c_str());
+    sysIncludeFlag = this->Makefile->GetDefinition(sysFlagVar.c_str());
     }
 
   bool flagUsed = false;



More information about the Cmake-commits mailing list