kiss: Drop pointless strip change

This commit is contained in:
Dylan Araps 2020-05-22 13:15:12 +03:00
parent 33f9c811c6
commit ee8f85495c
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 4 deletions

5
kiss
View File

@ -446,10 +446,7 @@ pkg_strip() {
*) continue
esac
strip "--strip-$strip_opt" \
--remove-section=.comment \
--remove-section=.note \
"$file" 2>/dev/null
strip "--strip-$strip_opt" "$file" 2>/dev/null
done 2>/dev/null ||:
}