From 48ded2c4774f83a9584bbdef89aa1e1e00540f19 Mon Sep 17 00:00:00 2001 From: imp Date: Thu, 1 Dec 2005 17:08:56 +0000 Subject: 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. --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.inc1') diff --git a/Makefile.inc1 b/Makefile.inc1 index 73478a6..8f140a6 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -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} -- cgit v1.1