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 <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2017-06-01 10:13:31 +01:00
parent 33848e1d24
commit fdc0944aa7

View File

@@ -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=$?