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

This commit is contained in:
Brad King 2006-04-26 21:51:23 -04:00
parent 4494c29078
commit a4f9d6a80b

View File

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