Browse Source

BUG: The dependency scanning target should be symbolic.

Brad King 18 years ago
parent
commit
6586149d64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmMakefileTargetGenerator.cxx

+ 1 - 1
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);
 }
 
 //----------------------------------------------------------------------------