소스 검색

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

Brad King 19 년 전
부모
커밋
a4f9d6a80b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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
     {