summaryrefslogtreecommitdiffstats
path: root/MAKEALL
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2015-01-29 12:09:51 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2015-02-02 11:46:31 +0100
commit27a20a6011f1b6e4f8f07b1ec7296c16bc7f5054 (patch)
tree04d0386059e6294e13af8f03d54f481f84a7a3b7 /MAKEALL
parent5020f86af9d8e76a394a62d9d34b137e56e5df3d (diff)
downloadbarebox-27a20a6011f1b6e4f8f07b1ec7296c16bc7f5054.tar.gz
barebox-27a20a6011f1b6e4f8f07b1ec7296c16bc7f5054.tar.xz
MAKEALL: fix do_build_all
Currently, do_build_all() does nothing. Since commit 195310fd7b48 (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>
Diffstat (limited to 'MAKEALL')
-rwxr-xr-xMAKEALL2
1 files changed, 1 insertions, 1 deletions
diff --git a/MAKEALL b/MAKEALL
index bf9131abbf..cde59e40ef 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -172,7 +172,7 @@ do_build_all() {
if [ -d $i ]
then
- do_build ${arch}
+ do_build ${arch} "*"
build_target=$((build_target + 1))
fi
done