summaryrefslogtreecommitdiffstats
path: root/system/cabextract
diff options
context:
space:
mode:
author David Somero2010-05-19 08:48:01 +0200
committer David Somero2010-05-19 08:48:01 +0200
commit1d333b7f73e4682131662256762507b3127be648 (patch)
tree5fa2e2ceec519ab9bdc5ec69297e6a422a5edfdc /system/cabextract
parenta3053d025eda2752d698f3f6d8c7a5aaa3ab302a (diff)
downloadslackbuilds-1d333b7f73e4682131662256762507b3127be648.tar.gz
system/cabextract: Fixed for bash4.
Diffstat (limited to 'system/cabextract')
-rw-r--r--system/cabextract/cabextract.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/cabextract/cabextract.SlackBuild b/system/cabextract/cabextract.SlackBuild
index f6f016bbfb..aa985f5c1f 100644
--- a/system/cabextract/cabextract.SlackBuild
+++ b/system/cabextract/cabextract.SlackBuild
@@ -71,12 +71,8 @@ CXXFLAGS="$SLKCFLAGS" \
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 \