9
0
Fork 0

MAKEALL: fix do_build_all

Currently, do_build_all() does nothing.

Since commit 195310fd7b (MAKEALL: add regex support), do_build()
takes two arguments.  To fix do_build_all(), it must pass "*" as the
second argument of do_build().

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-01-29 12:09:51 +09:00 committed by Sascha Hauer
parent 5020f86af9
commit 27a20a6011
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ do_build_all() {
if [ -d $i ]
then
do_build ${arch}
do_build ${arch} "*"
build_target=$((build_target + 1))
fi
done