diff options
author | ian <ian@FreeBSD.org> | 2013-09-23 00:04:36 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2013-09-23 00:04:36 +0000 |
commit | 5acce3cc7f418da48d069006b327265877aa87d8 (patch) | |
tree | 70bd37bc2c81088a56eabf4372c814f4a49d5f63 /include/Makefile | |
parent | 26423835af161459626fd913fb397bdda1e0f167 (diff) | |
download | FreeBSD-src-5acce3cc7f418da48d069006b327265877aa87d8.zip FreeBSD-src-5acce3cc7f418da48d069006b327265877aa87d8.tar.gz |
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
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index 730d522..cfe4620 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 |