diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:17 -0400 |
commit | eec7616e069b4aaf003494b370d40f04dfd350f1 (patch) | |
tree | 2a5dea71a58b3b643da376416ef59a37e4f60712 /network/btpd | |
parent | e603a4d1b8b773f9f4281602538f150ac83afb2a (diff) |
network/btpd: Fixed for bash4.
Diffstat (limited to 'network/btpd')
-rw-r--r-- | network/btpd/btpd.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/btpd/btpd.SlackBuild b/network/btpd/btpd.SlackBuild index dfc8fc37d396..2cfd9191f31c 100644 --- a/network/btpd/btpd.SlackBuild +++ b/network/btpd/btpd.SlackBuild @@ -64,12 +64,8 @@ CFLAGS="$SLKCFLAGS" \ make || exit 1 make install DESTDIR=$PKG || exit 1 -( 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 -) +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 cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |