libraries/perl-html-parser: Fixed for bash4.

This commit is contained in:
David Somero 2010-05-19 02:38:49 -04:00
parent ca474b62e4
commit b8f141f36b

View file

@ -78,10 +78,8 @@ mv $PKG/usr/share/man $PKG/usr/
find $PKG -depth -type d -empty -exec rm -rf {} \;
# strip libraries
( cd $PKG
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
)
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
# compress man pages
( cd $PKG/usr/man