diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-29 23:56:22 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-29 23:56:22 (GMT) |
commit | 43a44365519c99d87ae2759786ebf02a06072407 (patch) | |
tree | b45449a4a824fe0ea949a9c5edbcd90359308ca4 /Source/cmGlobalUnixMakefileGenerator.cxx | |
parent | a4b04375d2b31ab720ac03e338521683b29a38cb (diff) | |
download | CMake-43a44365519c99d87ae2759786ebf02a06072407.zip CMake-43a44365519c99d87ae2759786ebf02a06072407.tar.gz CMake-43a44365519c99d87ae2759786ebf02a06072407.tar.bz2 |
Fix problem on unix with space
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator.cxx b/Source/cmGlobalUnixMakefileGenerator.cxx index 2619f69..d6082c7 100644 --- a/Source/cmGlobalUnixMakefileGenerator.cxx +++ b/Source/cmGlobalUnixMakefileGenerator.cxx @@ -29,8 +29,9 @@ void cmGlobalUnixMakefileGenerator::EnableLanguage(const char* lang, { lang = "CXX"; } - std::string root - = cmSystemTools::ConvertToOutputPath(mf->GetDefinition("CMAKE_ROOT")); + //std::string root + // = cmSystemTools::ConvertToOutputPath(mf->GetDefinition("CMAKE_ROOT")); + std::string root = mf->GetDefinition("CMAKE_ROOT"); std::string rootBin = mf->GetHomeOutputDirectory(); if(m_ConfiguredFilesPath.size()) { |