diff options
author | Brad King <brad.king@kitware.com> | 2007-03-08 15:31:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-03-08 15:31:03 (GMT) |
commit | 4089c768900c10d55b9b58c5bca7242db18ed664 (patch) | |
tree | 5f4b233b5cfe48b74bd54f10c5598182ffc8b525 /Source/cmMakefileExecutableTargetGenerator.cxx | |
parent | 00b4eeededcebf2e5779d3a47fca1de130c22c63 (diff) | |
download | CMake-4089c768900c10d55b9b58c5bca7242db18ed664.zip CMake-4089c768900c10d55b9b58c5bca7242db18ed664.tar.gz CMake-4089c768900c10d55b9b58c5bca7242db18ed664.tar.bz2 |
BUG: Some calls to Convert() were converting for MAKEFILE but then passing the output to the build shell. The calls have now been converted to call Convert() with SHELL.
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index 5026834..c59ec76 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -192,16 +192,16 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink) std::string targetOutPathPDB = this->Convert(targetFullPathPDB.c_str(), cmLocalGenerator::FULL, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::SHELL); // Convert to the output path to use in constructing commands. std::string targetOutPath = this->Convert(targetFullPath.c_str(), cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::SHELL); std::string targetOutPathReal = this->Convert(targetFullPathReal.c_str(), cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::SHELL); // Get the language to use for linking this executable. const char* linkLanguage = |