diff options
author | Martin Roth <martinroth@google.com> | 2017-07-16 17:02:47 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-19 15:18:14 +0000 |
commit | 6228b9efb7f2fda1d248fb2fa320bf8cf2da55f8 (patch) | |
tree | bb0d7b4d2ff66580cd563a77de89d1471bcc39e3 /util/abuild | |
parent | 959cab4f1fd10901e64f2865fde240689201587c (diff) |
abuild: Update file locations
The TARGET directory is independent of the TOP directory.
Change-Id: I1a8b92eaaea138548712726b09a1b083d235892e
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20610
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/abuild')
-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 9d775142ca..8637e6ff10 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -714,8 +714,8 @@ if [ "$customizing" = "" ]; then customizing="default configuration" fi -FAILED_BOARDS="$TOP/$TARGET/failed_boards" -PASSED_BOARDS="$TOP/$TARGET/passing_boards" +FAILED_BOARDS="$TARGET/failed_boards" +PASSED_BOARDS="$TARGET/passing_boards" if [ "$recursive" = "false" ]; then rm -f "$FAILED_BOARDS" "$PASSED_BOARDS" @@ -786,7 +786,7 @@ build_targets() junitfile "$TARGET/sharedutils/make.log" junit "</failure>" junit "</testcase>" - echo "Shared Utilities - Log: ${TOP}/$TARGET/sharedutils/make.log" >> "$FAILED_BOARDS" + echo "Shared Utilities - Log: $TARGET/sharedutils/make.log" >> "$FAILED_BOARDS" return fi |