diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:45 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:45 -0400 |
commit | 9181e18d37379b8af785e686ceabd82adb46a62e (patch) | |
tree | e07852f2bd6f10749fbbf018403a64f5f5d68dfd /libraries/libmp4v2 | |
parent | 4046ae20a3c64c18f28d5cc322a6109d7b124e67 (diff) | |
download | slackbuilds-9181e18d37379b8af785e686ceabd82adb46a62e.tar.gz |
libraries/libmp4v2: Fixed for bash4.
Diffstat (limited to 'libraries/libmp4v2')
-rw-r--r-- | libraries/libmp4v2/libmp4v2.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libmp4v2/libmp4v2.SlackBuild b/libraries/libmp4v2/libmp4v2.SlackBuild index 65e87529aa..4e0cb54ae7 100644 --- a/libraries/libmp4v2/libmp4v2.SlackBuild +++ b/libraries/libmp4v2/libmp4v2.SlackBuild @@ -79,12 +79,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ |