From: Michael Tremer Date: Thu, 1 Jun 2017 09:13:31 +0000 (+0100) Subject: make.sh: Fix MAKETUNING X-Git-Tag: v2.19-core112~50^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdc0944aa7125a536292e5d21973deda66ddab0f;p=ipfire-2.x.git make.sh: Fix MAKETUNING This variable was not passed any more after the toolchain stage which caused builds to be very slow. Signed-off-by: Michael Tremer --- diff --git a/tools/make-functions b/tools/make-functions index 62f16642ff..8e40163fcd 100644 --- a/tools/make-functions +++ b/tools/make-functions @@ -645,7 +645,9 @@ lfsmake2() { local PS1='\u:\w$ ' enterchroot \ - bash -x -c "cd /usr/src/lfs && make -f $* LFS_BASEDIR=/usr/src install" \ + bash -x -c "cd /usr/src/lfs && make -f $* \ + MAKETUNING=${MAKETUNING} \ + LFS_BASEDIR=/usr/src install" \ >> ${LOGFILE} 2>&1 local COMPILE_SUCCESS=$?