index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andres P <aepd87@gmail.com> | 2010-05-24 17:02:55 -0430 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-24 21:18:57 -0500 |
commit | 52c3f871db3142c5157b898b46ca4f1eef05ff73 (patch) | |
tree | a8acdaf2c59ed8a707e3417cab0a7f538aa42d9d /scripts/makepkg.sh.in | |
parent | f948cb25bb3bc4ebfdd9d759451586e1baeb7b86 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 17072454..49dc7148 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -869,9 +869,7 @@ tidy_install() { msg2 "$(gettext "Stripping unneeded symbols from binaries and libraries...")" local binary find ${STRIP_DIRS[@]} -type f -perm -u+w 2>/dev/null | while read binary ; do - case "$(file -biz "$binary")" in - *compressed-encoding*) # Skip compressed binaries - ;; + case "$(file -bi "$binary")" in *application/x-sharedlib*) # Libraries (.so) /usr/bin/strip $STRIP_SHARED "$binary";; *application/x-archive*) # Libraries (.a) |