From dd5f1297c648f4a6245ce83530c4140c1eb78bb4 Mon Sep 17 00:00:00 2001 From: Ian Lepore Date: Mon, 23 Sep 2013 00:04:36 +0000 Subject: [PATCH] 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 --- include/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Makefile b/include/Makefile index 730d5228f3a4..cfe46201a12e 100644 --- a/include/Makefile +++ b/include/Makefile @@ -113,7 +113,7 @@ osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH} 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