1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-11-04 22:15:36 -07:00

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

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 ||:
}