diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-07-26 17:26:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-07-26 17:26:04 (GMT) |
commit | 9b8d15944fc6f8b58364e554d76d9b35136253a2 (patch) | |
tree | 3b6eb915224892912ab70cc6e827765e8f944c16 | |
parent | b15852d8b7d27590b16e3497e390cac7900997a3 (diff) | |
download | CMake-9b8d15944fc6f8b58364e554d76d9b35136253a2.zip CMake-9b8d15944fc6f8b58364e554d76d9b35136253a2.tar.gz CMake-9b8d15944fc6f8b58364e554d76d9b35136253a2.tar.bz2 |
ENH: if it is not a cmake target or a full path do not put depend information in the command
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 4559904..736ca83 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()); } } |