[Cmake-commits] [cmake-commits] king committed cmLocalUnixMakefileGenerator3.cxx 1.263 1.264

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Jun 10 13:03:39 EDT 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv21251/Source

Modified Files:
	cmLocalUnixMakefileGenerator3.cxx 
Log Message:
ENH: Skip 'SHELL = /bin/sh' in Makefiles on VMS

This shell does not exist on VMS, so we leave it out.


Index: cmLocalUnixMakefileGenerator3.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalUnixMakefileGenerator3.cxx,v
retrieving revision 1.263
retrieving revision 1.264
diff -C 2 -d -r1.263 -r1.264
*** cmLocalUnixMakefileGenerator3.cxx	10 Jun 2009 17:03:11 -0000	1.263
--- cmLocalUnixMakefileGenerator3.cxx	10 Jun 2009 17:03:37 -0000	1.264
***************
*** 677,684 ****
--- 677,686 ----
    else
      {
+ #if !defined(__VMS)
        makefileStream
          << "# The shell in which to execute make rules.\n"
          << "SHELL = /bin/sh\n"
          << "\n";
+ #endif
      }
  



More information about the Cmake-commits mailing list