summaryrefslogtreecommitdiffstats
path: root/system/zisofs-tools/zisofs-tools.SlackBuild
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:55 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:50:55 -0400
commit0b195cec789907ea51583d75a3e98d6928bd0287 (patch)
treea8647e4f23989c57f6adb46e0315f9c9b42bf1e0 /system/zisofs-tools/zisofs-tools.SlackBuild
parent2ddff245b21a927ed5c7289f01144e97b229e9cf (diff)
downloadslackbuilds-0b195cec789907ea51583d75a3e98d6928bd0287.tar.gz
slackbuilds-0b195cec789907ea51583d75a3e98d6928bd0287.tar.xz
system/zisofs-tools: Fixed for bash4.
Diffstat (limited to '')
-rw-r--r--system/zisofs-tools/zisofs-tools.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/zisofs-tools/zisofs-tools.SlackBuild b/system/zisofs-tools/zisofs-tools.SlackBuild
index 74506b3307..a9fa9270e3 100644
--- a/system/zisofs-tools/zisofs-tools.SlackBuild
+++ b/system/zisofs-tools/zisofs-tools.SlackBuild
@@ -65,12 +65,8 @@ CFLAGS="$SLKCFLAGS" \
make
make INSTALLROOT=$PKG install
-( 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
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;