summaryrefslogtreecommitdiffstats
path: root/office/kchmviewer
diff options
context:
space:
mode:
author David Somero2010-05-19 08:47:20 +0200
committer David Somero2010-05-19 08:47:20 +0200
commitc76716fbf4366f9e6bcd4918aa5ffa63d56a76ee (patch)
tree6ce09820c70d3a6e57cdae7e03d94c35dec77bb0 /office/kchmviewer
parentddd792346ab17001c5d327e04f9a2fb59a8b9b1b (diff)
downloadslackbuilds-c76716fbf4366f9e6bcd4918aa5ffa63d56a76ee.tar.gz
office/kchmviewer: Fixed for bash4.
Diffstat (limited to 'office/kchmviewer')
-rw-r--r--office/kchmviewer/kchmviewer.SlackBuild6
1 files changed, 2 insertions, 4 deletions
diff --git a/office/kchmviewer/kchmviewer.SlackBuild b/office/kchmviewer/kchmviewer.SlackBuild
index af325fd066..1ba6620cea 100644
--- a/office/kchmviewer/kchmviewer.SlackBuild
+++ b/office/kchmviewer/kchmviewer.SlackBuild
@@ -71,10 +71,8 @@ cmake \
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 COPYING ChangeLog DBUS-bindings FAQ README $PKG/usr/doc/$PRGNAM-$VERSION