From 443fbcf6a322d34b5c69505823ef2c0e3a7ee06c Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sat, 17 May 2014 18:24:45 +0200 Subject: abuild: replace hardcoded values by their variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some coreboot-builds/ and makes made their way into abuild. Stop them. Change-Id: I5784e1fd623ada30e2fadcc74a7da3ee75c5ee96 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/5772 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki --- util/abuild/abuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/abuild/abuild b/util/abuild/abuild index c08f4a2..434bcc6 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -545,9 +545,9 @@ 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 allnoconfig - make -j $cpus DOTCONFIG=$TMPCFG obj=coreboot-builds/temp objutil=coreboot-builds/sharedutils tools || exit 1 - rm -rf coreboot-builds/temp $TMPCFG + $MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils allnoconfig + $MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils tools || exit 1 + rm -rf $TARGET/temp $TMPCFG for VENDOR in $( vendors ); do for MAINBOARD in $( mainboards $VENDOR ); do echo $VENDOR/$MAINBOARD -- cgit v1.1