diff options
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2142,9 +2142,9 @@ stripbin() { esac msg "Stripping binaries" - scanelf --recursive --nobanner --etype "ET_DYN,ET_EXEC" . \ - | sed -e 's:^ET_DYN ::' -e 's:^ET_EXEC ::' \ - | while read filename; do + scanelf --recursive --nobanner --osabi --etype "ET_DYN,ET_EXEC" . \ + | while read type osabi filename; do + [ "$osabi" != "STANDALONE" ] || continue local XATTR=$(getfattr --match="" --dump "${filename}") "${stripcmd}" "${filename}" if [ -n "$XATTR" ]; then |