Преглед на файлове

ENH: add a fix for spaces in the path again...

Bill Hoffman преди 19 години
родител
ревизия
5ae48cf852
променени са 1 файла, в които са добавени 9 реда и са изтрити 2 реда
  1. 9 2
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 9 - 2
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -1766,8 +1766,15 @@ cmLocalUnixMakefileGenerator3
   if (tgt && tgt[0] != '\0')
     {
     std::string tgt2 = this->Convert(tgt,HOME_OUTPUT,MAKEFILE);
-    tgt2 = this->ConvertToMakeTarget(tgt2.c_str());
-    tgt2 = this->EscapeForShell(tgt2.c_str());
+    tgt2 = this->ConvertToMakeTarget(tgt2.c_str()); 
+    bool forceOn =  cmSystemTools::GetForceUnixPaths();
+#if !defined(WIN32) || defined(CYGWIN)
+    forceOn = true;
+#endif 
+    if(forceOn )
+      {
+      tgt2 = cmSystemTools::EscapeForUnixShell(tgt2);
+      }
     cmd += tgt2;
     }
   return cmd;