[PATCH] MAKEALL: fix do_build_all

Masahiro Yamada yamada.m at jp.panasonic.com
Wed Jan 28 19:09:51 PST 2015


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 at jp.panasonic.com>
---

 MAKEALL | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAKEALL b/MAKEALL
index bf9131a..cde59e4 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
-- 
1.9.1




More information about the barebox mailing list