[cmake-commits] king committed cmMakefile.cxx 1.397.2.1 1.397.2.2

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Jun 13 13:44:38 EDT 2007


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

Modified Files:
      Tag: CMake-SourceFile2-b
	cmMakefile.cxx 
Log Message:
COMP: Fix for build on VS.


Index: cmMakefile.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefile.cxx,v
retrieving revision 1.397.2.1
retrieving revision 1.397.2.2
diff -u -d -r1.397.2.1 -r1.397.2.2
--- cmMakefile.cxx	11 Jun 2007 22:23:34 -0000	1.397.2.1
+++ cmMakefile.cxx	13 Jun 2007 17:44:35 -0000	1.397.2.2
@@ -2137,9 +2137,9 @@
 cmSourceFile* cmMakefile::GetOrCreateSource(const char* sourceName,
                                             bool generated)
 {
-  if(cmSourceFile* sf = this->GetSource(sourceName))
+  if(cmSourceFile* esf = this->GetSource(sourceName))
     {
-    return sf;
+    return esf;
     }
   else
     {



More information about the Cmake-commits mailing list