Browse Source

Fix problem on unix with space

Andy Cedilnik 23 years ago
parent
commit
43a4436551
1 changed files with 3 additions and 2 deletions
  1. 3 2
      Source/cmGlobalUnixMakefileGenerator.cxx

+ 3 - 2
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())
     {