aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/android/switch_to_good.sh
diff options
context:
space:
mode:
authorCassidy Burden <cburden@google.com>2016-08-02 09:45:17 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-08-03 13:30:22 -0700
commit2a141a72ae3f5d420f892cbc7a81fc40db076022 (patch)
tree20c32bc3f0d18ccc8aedd5da36eb5c11f474e196 /binary_search_tool/android/switch_to_good.sh
parent2e307b303ac37c3e971086f23da2df25fef2c1b4 (diff)
downloadtoolchain-utils-2a141a72ae3f5d420f892cbc7a81fc40db076022.tar.gz
binary search tool: Use full obj path with compiler wrapper
In order to support the NDK, use absolute paths for object files. TEST=Run full Android bisection Change-Id: I588230fa5cd521cd7c7d48b87e8bab3e3b09b1aa Reviewed-on: https://chrome-internal-review.googlesource.com/272756 Commit-Ready: Cassidy Burden <cburden@google.com> Tested-by: Cassidy Burden <cburden@google.com> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'binary_search_tool/android/switch_to_good.sh')
-rwxr-xr-xbinary_search_tool/android/switch_to_good.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_search_tool/android/switch_to_good.sh b/binary_search_tool/android/switch_to_good.sh
index 485ece73..1c046c3f 100755
--- a/binary_search_tool/android/switch_to_good.sh
+++ b/binary_search_tool/android/switch_to_good.sh
@@ -17,7 +17,7 @@ source android/common.sh
OBJ_LIST_FILE=$1
# Symlink from GOOD obj to working tree.
-SWITCH_CMD="ln -f ${BISECT_GOOD_BUILD}/{} ${BISECT_WORK_BUILD}/{}; touch ${BISECT_WORK_BUILD}/{};"
+SWITCH_CMD="ln -f ${BISECT_GOOD_BUILD}/{} {}; touch {};"
overall_status=0