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@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"