9
0
Fork 0

MAKEALL: do not pass unneeded -C option to make

We do not change the working directory in this script.
"-C ${here}" is not necessary.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Masahiro Yamada 2015-02-03 19:14:47 +09:00 committed by Sascha Hauer
parent a93f942976
commit 1b31cad12a
1 changed files with 1 additions and 3 deletions

View File

@ -10,8 +10,6 @@ errors_list=""
nb_defconfigs=0
ret=0
here=$(pwd)
time_start=$(date +%s)
filename=$(basename $0)
@ -111,7 +109,7 @@ do_build_target() {
fi
fi
MAKE="make -C ${here} CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}"
MAKE="make CROSS_COMPILE=${cross_compile} ARCH=${arch} O=${BUILDDIR}"
${MAKE} -j${JOBS} ${target} 2>&1 > "${log_report}" | tee "${log_err}"
check_pipe_status