diff options
author | Brad King <brad.king@kitware.com> | 2006-04-27 01:51:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-04-27 01:51:23 (GMT) |
commit | a4f9d6a80b61018a33d564c9403304e7f400fc00 (patch) | |
tree | 6667a8405fb0ed1ab13983fda6d11990418cb084 /Source | |
parent | 4494c29078d60618b2addb00b4e2bb02e3a2729b (diff) | |
download | CMake-a4f9d6a80b61018a33d564c9403304e7f400fc00.zip CMake-a4f9d6a80b61018a33d564c9403304e7f400fc00.tar.gz CMake-a4f9d6a80b61018a33d564c9403304e7f400fc00.tar.bz2 |
BUG: Default SHELL on windows should not be a hard-coded path.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 6b93a1d..0717db5 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/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 { |