diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:06 -0400 |
commit | 01ee62c38de45993b99a41f8742c7a71f31d60e0 (patch) | |
tree | 193890b1083f8cbeee8d66223327bf1a157b0ead /network/tucan | |
parent | e8bffe0a306aded02fdd16538ef5fb95868b634c (diff) | |
download | slackbuilds-01ee62c38de45993b99a41f8742c7a71f31d60e0.tar.gz |
network/tucan: Fixed for bash4.
Diffstat (limited to 'network/tucan')
-rw-r--r-- | network/tucan/tucan.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/tucan/tucan.SlackBuild b/network/tucan/tucan.SlackBuild index 0b3b19e14c..a6e3b2a4e9 100644 --- a/network/tucan/tucan.SlackBuild +++ b/network/tucan/tucan.SlackBuild @@ -34,12 +34,8 @@ cp -f tucan.desktop $PKG/usr/share/applications # Put the manpages in the right place mv $PKG/usr/share/man $PKG/usr -( 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 CHANGELOG README TODO docs/* $PKG/usr/doc/$PRGNAM-$VERSION |