diff options
author | Brad King <brad.king@kitware.com> | 2006-09-21 19:14:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-09-21 19:14:06 (GMT) |
commit | 2459ceb076d7788f7512ef4a2f68e81c43bc271d (patch) | |
tree | b198c9b7a49aed110b2a706f82426e84690dc582 /Source/cmLocalVisualStudio6Generator.cxx | |
parent | 0952a96485cad05f68724f0a703758dceb60add9 (diff) | |
download | CMake-2459ceb076d7788f7512ef4a2f68e81c43bc271d.zip CMake-2459ceb076d7788f7512ef4a2f68e81c43bc271d.tar.gz CMake-2459ceb076d7788f7512ef4a2f68e81c43bc271d.tar.bz2 |
BUG: Centralized generation of command line arguments in escaped form. This addresses bug#3786 for several platforms.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 54bdafe..7a07d45 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -223,12 +223,12 @@ void cmLocalVisualStudio6Generator::AddDSPBuildRule(cmTarget& tgt) std::string args; args = "-H"; args += this->Convert(this->Makefile->GetHomeDirectory(), - START_OUTPUT, SHELL, true); + START_OUTPUT, UNCHANGED, true); commandLine.push_back(args); args = "-B"; args += this->Convert(this->Makefile->GetHomeOutputDirectory(), - START_OUTPUT, SHELL, true); + START_OUTPUT, UNCHANGED, true); commandLine.push_back(args); std::string configFile = |