diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:32 -0400 |
commit | 52a130d4715a636ef8285f662497317912fade57 (patch) | |
tree | 68ffe66c2b4396a20e6202b096acab64473a15b6 /network/cryptcat-unix | |
parent | b2c0044f5020ed4ff35b25a90b8176f7438dd9f6 (diff) |
network/cryptcat-unix: Fixed for bash4.
Diffstat (limited to 'network/cryptcat-unix')
-rw-r--r-- | network/cryptcat-unix/cryptcat-unix.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/cryptcat-unix/cryptcat-unix.SlackBuild b/network/cryptcat-unix/cryptcat-unix.SlackBuild index 881d05119487..62002999ee2a 100644 --- a/network/cryptcat-unix/cryptcat-unix.SlackBuild +++ b/network/cryptcat-unix/cryptcat-unix.SlackBuild @@ -63,12 +63,8 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc -( 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 cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |