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

am: f56e89f160

Change-Id: Id18a9e1e92afa1753cc8ac1584684aac51e98727
This commit is contained in:
Greg Kaiser
2019-09-09 15:20:04 -07:00
committed by android-build-merger

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