diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-17 18:24:45 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-17 21:15:02 +0200 |
commit | 443fbcf6a322d34b5c69505823ef2c0e3a7ee06c (patch) | |
tree | 4bf45d38cfa0095884ab2b40d56c3e6fa223f1a1 | |
parent | 262f31c3525f57f29310b5c7173b1a0f34efe792 (diff) | |
download | coreboot-443fbcf6a322d34b5c69505823ef2c0e3a7ee06c.tar.xz |
abuild: replace hardcoded values by their variables
Some coreboot-builds/ and makes made their way into
abuild. Stop them.
Change-Id: I5784e1fd623ada30e2fadcc74a7da3ee75c5ee96
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/5772
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rwxr-xr-x | util/abuild/abuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index c08f4a26e9..434bcc6ea7 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 |