multimedia/mythplugins: Fixed for bash4.

This commit is contained in:
David Somero 2010-05-19 02:41:12 -04:00
parent 00538da1dd
commit 44ba635afc

View file

@ -70,12 +70,8 @@ make INSTALL_ROOT="$PKG" install
cp -a mythweb $PKG/usr/share/mythtv/
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
)
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
# Remove perllocal.pod and other special files that don't need to be installed
( cd $PKG