aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-09-09 22:06:56 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-09-09 22:06:56 +0000
commitf56e89f160655d42d4e08e5703007ac5aeadfea7 (patch)
tree07c1e339746bf4b4bf145059dea6ea402fcce3ae /scripts
parent23482a55ae9a491ecfda3da987ccab23e3789cf8 (diff)
parente106d8fd8cdd935cc0884ed8cb9aca70ca75e370 (diff)
downloadbuild_soong-f56e89f160655d42d4e08e5703007ac5aeadfea7.tar.gz
build_soong-f56e89f160655d42d4e08e5703007ac5aeadfea7.tar.bz2
build_soong-f56e89f160655d42d4e08e5703007ac5aeadfea7.zip
Merge "strip.sh: Fix argument to llvm-strip"
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/strip.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/strip.sh b/scripts/strip.sh
index 43627469..52f93668 100755
--- a/scripts/strip.sh
+++ b/scripts/strip.sh
@@ -140,7 +140,7 @@ do_add_gnu_debuglink() {
do_remove_build_id() {
if [ -z "${use_gnu_strip}" ]; then
- "${CLANG_BIN}/llvm-strip" -remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.no-build-id"
+ "${CLANG_BIN}/llvm-strip" --remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.no-build-id"
else
"${CROSS_COMPILE}strip" --remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.no-build-id"
fi