buildenv_setup(), if overridden in the configuration file,

only needs to be invoked once.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2015-05-06 16:21:12 +00:00
parent 6848c01fad
commit 57dbde2ca8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/release-arm-redux/; revision=282557

View File

@ -278,12 +278,13 @@ extra_chroot_setup() {
done
fi
buildenv_setup
return 0
} # extra_chroot_setup()
# chroot_build_target(): Build the userland and kernel for the build target.
chroot_build_target() {
buildenv_setup
load_target_env
if [ ! -z "${EMBEDDEDBUILD}" ]; then
RELEASE_WMAKEFLAGS="${RELEASE_WMAKEFLAGS} \
@ -301,7 +302,6 @@ chroot_build_target() {
# chroot_build_release(): Invoke the 'make release' target.
chroot_build_release() {
buildenv_setup
load_target_env
if [ -z "${EMBEDDEDBUILD}" ]; then