Ver Fonte

BUG: Default SHELL on windows should not be a hard-coded path.

Brad King há 19 anos atrás
pai
commit
a4f9d6a80b
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 2 - 1
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -510,7 +510,8 @@ cmLocalUnixMakefileGenerator3
   if(this->WindowsShell)
     {
      makefileStream
-       << "SHELL = C:\\WINDOWS\\system32\\cmd.exe\n";
+       << "SHELL = cmd.exe\n"
+       << "\n";
     }
   else
     {