diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:20 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:20 -0400 |
commit | c76716fbf4366f9e6bcd4918aa5ffa63d56a76ee (patch) | |
tree | 6ce09820c70d3a6e57cdae7e03d94c35dec77bb0 /office | |
parent | ddd792346ab17001c5d327e04f9a2fb59a8b9b1b (diff) | |
download | slackbuilds-c76716fbf4366f9e6bcd4918aa5ffa63d56a76ee.tar.gz |
office/kchmviewer: Fixed for bash4.
Diffstat (limited to 'office')
-rw-r--r-- | office/kchmviewer/kchmviewer.SlackBuild | 6 |
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 |