From a8426f55e527acafd968f5e6b333bcbc4312d80e Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 21 Sep 2006 17:21:13 -0400 Subject: [PATCH] COMP: Fix shadowed local variable created by previous cmake_force change. --- Source/cmLocalUnixMakefileGenerator3.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index a721abaf1..0898dafc5 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -740,14 +740,10 @@ cmLocalUnixMakefileGenerator3 // Special symbolic target that never exists to force dependers to // run their rules. - { - std::vector no_depends; - std::vector 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);