diff options
author | Dan McGee <dan@archlinux.org> | 2008-02-02 20:39:50 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-02 20:39:50 +0100 |
commit | c492ca840c54d8d45d5916a280f2119c363e0aba (patch) | |
tree | a0ba13d659fbdf7b316ea75492dcd54b621447b9 /scripts/makepkg.sh.in | |
parent | 5647f7f512380200175675bc2fa5fa2e5892d997 (diff) | |
parent | 7cfb343b0fed556e82b6fbc81047c5461effab84 (diff) | |
download | pacman-c492ca840c54d8d45d5916a280f2119c363e0aba.tar.gz pacman-c492ca840c54d8d45d5916a280f2119c363e0aba.tar.xz |
Merge branch 'maint'
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index f5d5e052..0997386e 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -754,7 +754,7 @@ tidy_install() { if [ "$(check_option strip)" = "y" ]; then msg2 "$(gettext "Stripping debugging symbols from binaries and libraries...")" - for file in $(find {,usr/{,local/},opt/}{bin,lib,sbin} -type f 2>/dev/null || true); do + for file in $(find {,usr/{,local/},opt/*/}{bin,lib,sbin} -type f 2>/dev/null || true); do case "$(file -biz "$file")" in *application/x-sharedlib*) # Libraries /usr/bin/strip --strip-debug "$file";; |