1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

In make buildenv, spell sh as ${SHELL}. In this case, we don't want

to hard code /bin/sh since we're forking it for the user to type
commands into.  As such, ${SHELL} is the preferred thing users type
commands into.
This commit is contained in:
Warner Losh 2005-12-01 17:08:56 +00:00
parent 38df04a76d
commit d53cdc6c43
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152986

View File

@ -470,7 +470,7 @@ buildworld: ${WMAKE_TGTS}
buildenv:
@echo Entering world for ${TARGET_ARCH}:${TARGET}
@cd ${.CURDIR} && env ${WMAKEENV} sh || true
@cd ${.CURDIR} && env ${WMAKEENV} ${SHELL} || true
TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
toolchain: ${TOOLCHAIN_TGTS}