1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-03-02 10:21:49 -05:00

Merge branch 'maint'

This commit is contained in:
Dan McGee 2009-02-08 11:43:08 -06:00
commit 04c2b9d4ed

View File

@ -834,9 +834,9 @@ tidy_install() {
find ${STRIP_DIRS[@]} -type f 2>/dev/null | while read binary ; do
case "$(file -biz "$binary")" in
*application/x-sharedlib*) # Libraries (.so)
/usr/bin/strip --strip-debug "$binary";;
/usr/bin/strip -S "$binary";;
*application/x-archive*) # Libraries (.a)
/usr/bin/strip --strip-debug "$binary";;
/usr/bin/strip -S "$binary";;
*application/x-executable*) # Binaries
/usr/bin/strip "$binary";;
esac