summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-03-01 16:25:23 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-03-01 16:25:23 (GMT)
commit717927d6d2f8ef4ad1a5a960adc8c80aa1b7e44a (patch)
treec13f70a1955cbc44a1d51ab4075171f684e8f705 /Source
parent693b7447a4760292a65b5fd0ddcec1150b212e42 (diff)
downloadCMake-717927d6d2f8ef4ad1a5a960adc8c80aa1b7e44a.zip
CMake-717927d6d2f8ef4ad1a5a960adc8c80aa1b7e44a.tar.gz
CMake-717927d6d2f8ef4ad1a5a960adc8c80aa1b7e44a.tar.bz2
FIX: fix spaces in paths
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 93c7cf2..ee204f9 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -282,7 +282,7 @@ void cmGlobalXCodeGenerator::CreateReRunCMakeFile(cmLocalGenerator* root)
for(std::vector<std::string>::const_iterator i = lfiles.begin();
i != lfiles.end(); ++i)
{
- makefileStream << "\\\n" << *i;
+ makefileStream << "\\\n" << this->ConvertToRelativeForMake(i->c_str());
}
std::string cmake = mf->GetRequiredDefinition("CMAKE_COMMAND");
makefileStream << "\n\t" << this->ConvertToRelativeForMake(cmake.c_str())