diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-03 21:54:37 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-03 21:54:37 (GMT) |
commit | 71505ff2d2d9c5374281edcc20b281781be06e0f (patch) | |
tree | 24048b60fc7a6997ae0242d8228dfa7628d788f7 /Source/cmGlobalXCodeGenerator.cxx | |
parent | 2fcae1932c4921868056ee404d448adec563dd6e (diff) | |
download | CMake-71505ff2d2d9c5374281edcc20b281781be06e0f.zip CMake-71505ff2d2d9c5374281edcc20b281781be06e0f.tar.gz CMake-71505ff2d2d9c5374281edcc20b281781be06e0f.tar.bz2 |
ENH: fix spaces in path for xcode
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 5e01987..6724b89 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1380,8 +1380,7 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target, { // Convert to a path for the native build tool. cmSystemTools::ConvertToUnixSlashes(install_name_dir); - install_name_dir = - this->XCodeEscapePath(install_name_dir.c_str()); + // do not escape spaces on this since it is only a single path } } buildSettings->AddAttribute("INSTALL_PATH", |