Merge branch 'maint'

This commit is contained in:
Dan McGee 2009-02-08 11:43:08 -06:00
commit 04c2b9d4ed
1 changed files with 2 additions and 2 deletions

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