ENH: Skip 'SHELL = /bin/sh' in Makefiles on VMS

This shell does not exist on VMS, so we leave it out.
This commit is contained in:
Brad King 2009-06-10 13:03:37 -04:00
parent 516add4d58
commit c8795101a4

View File

@ -676,10 +676,12 @@ cmLocalUnixMakefileGenerator3
} }
else else
{ {
#if !defined(__VMS)
makefileStream makefileStream
<< "# The shell in which to execute make rules.\n" << "# The shell in which to execute make rules.\n"
<< "SHELL = /bin/sh\n" << "SHELL = /bin/sh\n"
<< "\n"; << "\n";
#endif
} }
std::string cmakecommand = std::string cmakecommand =