diff options
author | Brad King <brad.king@kitware.com> | 2006-10-10 17:47:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-10 17:47:50 (GMT) |
commit | f0c79a00309da0e3709284fa8d1de486b07a1c71 (patch) | |
tree | 155c330618e8668e5331e580c79addac50926d9c /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | cdcbe2587ab3dba5b696e21f9a118ba8e89dfa71 (diff) | |
download | CMake-f0c79a00309da0e3709284fa8d1de486b07a1c71.zip CMake-f0c79a00309da0e3709284fa8d1de486b07a1c71.tar.gz CMake-f0c79a00309da0e3709284fa8d1de486b07a1c71.tar.bz2 |
BUG: Avoid duplicate conversion to output path.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index e75c7f4..30771b9 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -464,9 +464,6 @@ cmGlobalUnixMakefileGenerator3 std::string makeTarget = lg->GetMakefile()->GetStartOutputDirectory(); makeTarget += "/"; makeTarget += pass; - makeTarget = lg->Convert(makeTarget.c_str(), - cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); // The directory-level rule should depend on the target-level rules // for all targets in the directory. @@ -502,9 +499,6 @@ cmGlobalUnixMakefileGenerator3 std::string subdir = slg->GetMakefile()->GetStartOutputDirectory(); subdir += "/"; subdir += pass; - subdir = slg->Convert(subdir.c_str(), - cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); depends.push_back(subdir); } |