summaryrefslogtreecommitdiffstats
path: root/util/abuild
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2014-01-21 23:03:27 +0100
committerPatrick Georgi <patrick@georgi-clan.de>2014-04-16 08:19:08 +0200
commit34195beed12dd91805c9e7beb1d49038ecf123b6 (patch)
treed9229b7e3c1520a5fdda25547ade5bb2a01794f3 /util/abuild
parent7bd269e22505a158e9c77e18493c1e561f8dce0d (diff)
downloadcoreboot-34195beed12dd91805c9e7beb1d49038ecf123b6.tar.gz
coreboot-34195beed12dd91805c9e7beb1d49038ecf123b6.tar.bz2
coreboot-34195beed12dd91805c9e7beb1d49038ecf123b6.zip
abuild: break early if building tools fails
Change-Id: I8da04df024a31c780b924a586d056a5351845153 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/4773 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/abuild')
-rwxr-xr-xutil/abuild/abuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 7676a9f5e84c..a5a57c968375 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -613,7 +613,7 @@ build_all_targets()
if [ "$enable_blobs" = "true" ]; then
echo "CONFIG_USE_BLOBS=y" > $TMPCFG
fi
- make -j $cpus DOTCONFIG=$TMPCFG obj=coreboot-builds/temp objutil=coreboot-builds/sharedutils tools
+ make -j $cpus DOTCONFIG=$TMPCFG obj=coreboot-builds/temp objutil=coreboot-builds/sharedutils tools || exit 1
rm -rf coreboot-builds/temp $TMPCFG
for VENDOR in $( vendors ); do
for MAINBOARD in $( mainboards $VENDOR ); do