summaryrefslogtreecommitdiffstats
path: root/network/tucan
diff options
context:
space:
mode:
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
commit01ee62c38de45993b99a41f8742c7a71f31d60e0 (patch)
tree193890b1083f8cbeee8d66223327bf1a157b0ead /network/tucan
parente8bffe0a306aded02fdd16538ef5fb95868b634c (diff)
downloadslackbuilds-01ee62c38de45993b99a41f8742c7a71f31d60e0.tar.gz
slackbuilds-01ee62c38de45993b99a41f8742c7a71f31d60e0.tar.xz
network/tucan: Fixed for bash4.
Diffstat (limited to 'network/tucan')
-rw-r--r--network/tucan/tucan.SlackBuild8
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