[cmake-commits] hoffman committed cmMakefileTargetGenerator.cxx 1.43 1.44

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Sep 12 10:21:49 EDT 2006


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

Modified Files:
	cmMakefileTargetGenerator.cxx 
Log Message:
ENH: put the if in the right place


Index: cmMakefileTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileTargetGenerator.cxx,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- cmMakefileTargetGenerator.cxx	12 Sep 2006 14:03:57 -0000	1.43
+++ cmMakefileTargetGenerator.cxx	12 Sep 2006 14:21:47 -0000	1.44
@@ -1123,11 +1123,11 @@
           depends.push_back(location);
           }
         }
-      }
-    // depend on full path libs as well
-    else if(cmSystemTools::FileIsFullPath(lib->first.c_str()))
-      {
-      depends.push_back(lib->first.c_str());
+      // depend on full path libs as well
+      else if(cmSystemTools::FileIsFullPath(lib->first.c_str()))
+        {
+        depends.push_back(lib->first.c_str());
+        }
       }
     }
 }



More information about the Cmake-commits mailing list