[cmake-commits] king committed cmLocalUnixMakefileGenerator3.cxx 1.174 1.175

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Sep 21 17:21:16 EDT 2006


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

Modified Files:
	cmLocalUnixMakefileGenerator3.cxx 
Log Message:
COMP: Fix shadowed local variable created by previous cmake_force change.


Index: cmLocalUnixMakefileGenerator3.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalUnixMakefileGenerator3.cxx,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -d -r1.174 -r1.175
--- cmLocalUnixMakefileGenerator3.cxx	21 Sep 2006 19:14:06 -0000	1.174
+++ cmLocalUnixMakefileGenerator3.cxx	21 Sep 2006 21:21:13 -0000	1.175
@@ -740,14 +740,10 @@
 
   // Special symbolic target that never exists to force dependers to
   // run their rules.
-  {
-  std::vector<std::string> no_depends;
-  std::vector<std::string> no_commands;
   this->WriteMakeRule
     (makefileStream,
      "A target that is always out of date.",
      "cmake_force", no_depends, no_commands, true);
-  }
 
   // Variables for reference by other rules.
   this->WriteMakeVariables(makefileStream);



More information about the Cmake-commits mailing list