diff options
author | Brad King <brad.king@kitware.com> | 2006-09-21 20:10:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-09-21 20:10:47 (GMT) |
commit | b9fc06735da95cd0f96c96012dd98c7ab5be56e6 (patch) | |
tree | 9ad4d426525eba88099635e9a3c6e5180643cadf /Source/cmGlobalXCodeGenerator.cxx | |
parent | 6d72bb5ae1a6abe3f497133ea8483e0a6cd0dd5e (diff) | |
download | CMake-b9fc06735da95cd0f96c96012dd98c7ab5be56e6.zip CMake-b9fc06735da95cd0f96c96012dd98c7ab5be56e6.tar.gz CMake-b9fc06735da95cd0f96c96012dd98c7ab5be56e6.tar.bz2 |
BUG: Enabled use of EscapeForShell to properly escape custom command lines. This addresses bug#3786 for Xcode.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index f886ea6..bfc8c8e 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1037,7 +1037,8 @@ cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase, for(unsigned int j=1; j < commandLine.size(); ++j) { cmd += " "; - cmd += cmSystemTools::EscapeSpaces(commandLine[j].c_str()); + cmd += (this->CurrentLocalGenerator + ->EscapeForShell(commandLine[j].c_str())); } makefileStream << "\t" << cmd.c_str() << "\n"; } |