Merge "strip.sh: Fix argument to llvm-strip" am: f56e89f160

am: bb25e168f3

Change-Id: Ia482420c954b80b584654a7f89ab3abf1eaa3185
This commit is contained in:
Greg Kaiser 2019-09-09 15:30:46 -07:00 committed by android-build-merger
commit 64ae76dc85
1 changed files with 1 additions and 1 deletions

View File

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