Browse Source

ENH: if it is not a cmake target or a full path do not put depend information in the command

Bill Hoffman 20 years ago
parent
commit
9b8d15944f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 1 - 1
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -2296,7 +2296,7 @@ cmLocalUnixMakefileGenerator3
       d != cc.GetDepends().end(); ++d)
       d != cc.GetDepends().end(); ++d)
     {
     {
     // Add this dependency.
     // Add this dependency.
-    this->AppendAnyDepend(depends, d->c_str(), true);
+    this->AppendAnyDepend(depends, d->c_str());
     }
     }
 }
 }