Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Sep 2013 00:04:36 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r255807 - head/include
Message-ID:  <201309230004.r8N04atk071938@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Mon Sep 23 00:04:36 2013
New Revision: 255807
URL: http://svnweb.freebsd.org/changeset/base/255807

Log:
  Launch the bourne shell using "sh" rather than "${SHELL}", as the latter
  may come in from the environment and reflect the user's interactive shell.
  Using bare "sh" is the dominant pattern in existing makefiles.
  
  MFC this together with r255775.
  
  Approved by:	re ()
  MFC after:	2 weeks

Modified:
  head/include/Makefile

Modified: head/include/Makefile
==============================================================================
--- head/include/Makefile	Sun Sep 22 23:48:41 2013	(r255806)
+++ head/include/Makefile	Mon Sep 23 00:04:36 2013	(r255807)
@@ -113,7 +113,7 @@ osreldate.h vers.c: ${NEWVERS_SH} ${PARA
 	    MAKE="${MAKE}" \
 	    NEWVERS_SH=${NEWVERS_SH} \
 	    PARAM_H=${PARAM_H} \
-	    ${SHELL} ${MK_OSRELDATE_SH}
+	    sh ${MK_OSRELDATE_SH}
 
 .for i in ${LHDRS}
 INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309230004.r8N04atk071938>