diff --git a/MAKEALL b/MAKEALL index 6ce22c5..6999d64 100755 --- a/MAKEALL +++ b/MAKEALL @@ -109,8 +109,8 @@ fi fi - MAKE="make CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}" - ${MAKE} -j${JOBS} ${target} 2>&1 > "${log_report}" | tee "${log_err}" + MAKE="make -j${JOBS} CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}" + ${MAKE} ${target} 2>&1 > "${log_report}" | tee "${log_err}" check_pipe_status result="$?" @@ -120,7 +120,7 @@ if [ "$result" = "0" ]; then printf "OK \n" | tee -a "${log_report}" - ${MAKE} -j${JOBS} -s 2>&1 >> "${log_report}" | tee -a "${log_err}" + ${MAKE} -s 2>&1 >> "${log_report}" | tee -a "${log_err}" check_pipe_status result="$?"