summaryrefslogtreecommitdiff
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-07-26 13:26:04 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2005-07-26 13:26:04 -0400
commit9b8d15944fc6f8b58364e554d76d9b35136253a2 (patch)
tree3b6eb915224892912ab70cc6e827765e8f944c16 /Source/cmLocalUnixMakefileGenerator3.cxx
parentb15852d8b7d27590b16e3497e390cac7900997a3 (diff)
downloadcmake-9b8d15944fc6f8b58364e554d76d9b35136253a2.tar.gz
ENH: if it is not a cmake target or a full path do not put depend information in the command
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 45599040fb..736ca83ae4 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -2296,7 +2296,7 @@ cmLocalUnixMakefileGenerator3
d != cc.GetDepends().end(); ++d)
{
// Add this dependency.
- this->AppendAnyDepend(depends, d->c_str(), true);
+ this->AppendAnyDepend(depends, d->c_str());
}
}