mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04: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:
parent
38df04a76d
commit
d53cdc6c43
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue