From c8795101a47990842bd7e5c2163831d1fbe3c160 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 10 Jun 2009 13:03:37 -0400 Subject: [PATCH] ENH: Skip 'SHELL = /bin/sh' in Makefiles on VMS This shell does not exist on VMS, so we leave it out. --- Source/cmLocalUnixMakefileGenerator3.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index df8a80f6b..094f46281 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -676,10 +676,12 @@ cmLocalUnixMakefileGenerator3 } else { +#if !defined(__VMS) makefileStream << "# The shell in which to execute make rules.\n" << "SHELL = /bin/sh\n" << "\n"; +#endif } std::string cmakecommand =