From 6586149d64be27694652b40bfbcc4d19f6c2c5eb Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 21 Dec 2007 11:00:03 -0500 Subject: [PATCH] BUG: The dependency scanning target should be symbolic. --- Source/cmMakefileTargetGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index eda3ac3b8..118db993a 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -837,7 +837,7 @@ void cmMakefileTargetGenerator::WriteTargetDependRules() // Write the rule. this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0, depTarget.c_str(), - depends, commands, false); + depends, commands, true); } //----------------------------------------------------------------------------