[coreboot-gerrit] Change in coreboot[master]: util/abuild: Use absolute paths for (failed|passed)_boards

Nico Huber (Code Review) gerrit at coreboot.org
Sun Nov 4 19:37:13 CET 2018


Nico Huber has uploaded this change for review. ( https://review.coreboot.org/29451


Change subject: util/abuild: Use absolute paths for (failed|passed)_boards
......................................................................

util/abuild: Use absolute paths for (failed|passed)_boards

The variables are used from different relative locations so they have to
hold an absolute path. Fixes runs with the default, relative TARGET path
`coreboot-builds/`.

Change-Id: Ief00e28e09a4714b0106c35ad4f4e9c696f6aad4
Signed-off-by: Nico Huber <nico.h at gmx.de>
---
M util/abuild/abuild
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/29451/1

diff --git a/util/abuild/abuild b/util/abuild/abuild
index 9afd364..8ec9b11 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -747,8 +747,8 @@
 	customizing="default configuration"
 fi
 
-FAILED_BOARDS="${TARGET}/failed_boards"
-PASSED_BOARDS="${TARGET}/passing_boards"
+FAILED_BOARDS=$(realpath ${TARGET}/failed_boards)
+PASSED_BOARDS=$(realpath ${TARGET}/passing_boards)
 
 if [ "$recursive" = "false" ]; then
 	rm -f "$FAILED_BOARDS" "$PASSED_BOARDS"

-- 
To view, visit https://review.coreboot.org/29451
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ief00e28e09a4714b0106c35ad4f4e9c696f6aad4
Gerrit-Change-Number: 29451
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h at gmx.de>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20181104/d6a0ff6b/attachment-0001.html>


More information about the coreboot-gerrit mailing list