diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2011-06-01 19:29:48 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2011-06-01 19:29:48 +0000 |
commit | f9d19f2a26f81a52cc995e701cb9a29e0b72a428 (patch) | |
tree | 2ba39a4fe01534542f4ae7ae95a343c5cbbf826c /util/abuild | |
parent | 76d53b22d393ca15d3c0eef8b2d37478000ae86c (diff) | |
download | coreboot-f9d19f2a26f81a52cc995e701cb9a29e0b72a428.tar.xz |
Report build result from abuild (did all requested boards build?)
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Patrick Georgi <patrick@georgi-clan.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6615 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/abuild')
-rwxr-xr-x | util/abuild/abuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 2040709cd7..24e5d638bd 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -35,6 +35,9 @@ cpus=1 # Configure-only mode configureonly=0 +# Did any board fail to build? +failed=0 + # One might want to adjust these in case of cross compiling for i in make gmake gnumake nonexistant_make; do $i --version 2>/dev/null |grep "GNU Make" >/dev/null && break @@ -294,6 +297,7 @@ function compile_target printf "FAILED after ${duration}s!\nLog excerpt:\n" tail -n $CONTEXT make.log 2> /dev/null || tail -$CONTEXT make.log cd $CURR + failed=1 return 1 fi } @@ -622,3 +626,4 @@ else fi xml '</abuild>' +exit $failed |