aboutsummaryrefslogtreecommitdiff
path: root/util/abuild
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-07-19 19:33:34 -0600
committerMartin Roth <martinroth@google.com>2017-07-25 15:11:24 +0000
commit6d2cbb9e58b704389f948c2c97cfb3a3067cfeda (patch)
treefcaac97b062560617749ad38a327dc99378407e1 /util/abuild
parente203aa1d58d754c79381fb73f96d5a6a384d48a2 (diff)
abuild: Update file locations
The full path to the passed/failed build lists needs to be specified. On the builders, the absolute path is passed in, which conflicted with the ${TOP} value, causing this to fail on the builders. When TOP was removed from the path, the builders worked correctly, but it failed when run locally. This fixes the path in either case. Change-Id: Ia4370f4a2b84991edccfc723a3136b88ca27db7d Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20660 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/abuild')
-rwxr-xr-xutil/abuild/abuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 8637e6ff10..f0bfcd8d9b 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -714,8 +714,8 @@ if [ "$customizing" = "" ]; then
customizing="default configuration"
fi
-FAILED_BOARDS="$TARGET/failed_boards"
-PASSED_BOARDS="$TARGET/passing_boards"
+FAILED_BOARDS="${COREBOOT_BUILD_DIR:-${TOP}/coreboot-builds}/failed_boards"
+PASSED_BOARDS="${COREBOOT_BUILD_DIR:-${TOP}/coreboot-builds}/passing_boards"
if [ "$recursive" = "false" ]; then
rm -f "$FAILED_BOARDS" "$PASSED_BOARDS"