mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] MAKEALL: fix do_build_all
@ 2015-01-29  3:09 Masahiro Yamada
  2015-01-29  9:08 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Masahiro Yamada @ 2015-01-29  3:09 UTC (permalink / raw)
  To: barebox

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>
---

 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


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-01-29  9:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-29  3:09 [PATCH] MAKEALL: fix do_build_all Masahiro Yamada
2015-01-29  9:08 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox