diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:16 -0400 |
commit | 2bb387f30ca47685d836de7329db7f012421804c (patch) | |
tree | b4305d830a3df49ce6f66547cf488edcee51d03b /libraries/libdvbpsi | |
parent | 95f58f6ad4d23b44270cff1da801932cbb21910b (diff) | |
download | slackbuilds-2bb387f30ca47685d836de7329db7f012421804c.tar.gz |
libraries/libdvbpsi: Fixed for bash4.
Diffstat (limited to 'libraries/libdvbpsi')
-rw-r--r-- | libraries/libdvbpsi/libdvbpsi.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libdvbpsi/libdvbpsi.SlackBuild b/libraries/libdvbpsi/libdvbpsi.SlackBuild index 0a3e94fa8f..39585aa18e 100644 --- a/libraries/libdvbpsi/libdvbpsi.SlackBuild +++ b/libraries/libdvbpsi/libdvbpsi.SlackBuild @@ -76,12 +76,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 - 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ |