From a4f9d6a80b61018a33d564c9403304e7f400fc00 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 26 Apr 2006 21:51:23 -0400 Subject: [PATCH] BUG: Default SHELL on windows should not be a hard-coded path. --- Source/cmLocalUnixMakefileGenerator3.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 6b93a1d4e5..0717db55e6 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 {