summaryrefslogtreecommitdiffstats
path: root/MAKEALL
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2015-02-03 19:14:47 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2015-02-04 12:51:22 +0100
commit1b31cad12ab559f3167ced9358abd7687cfa0ebf (patch)
tree9cf2f429bbcc07153e6b7030a7c9f3f94a253ad0 /MAKEALL
parenta93f9429765d7995016c8073ba03cbfa01ad5996 (diff)
downloadbarebox-1b31cad12ab559f3167ced9358abd7687cfa0ebf.tar.gz
barebox-1b31cad12ab559f3167ced9358abd7687cfa0ebf.tar.xz
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>
Diffstat (limited to 'MAKEALL')
-rwxr-xr-xMAKEALL4
1 files changed, 1 insertions, 3 deletions
diff --git a/MAKEALL b/MAKEALL
index 1f00e7da71..6ce22c5f87 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -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