summaryrefslogtreecommitdiffstats
path: root/system/xar
diff options
context:
space:
mode:
author David Somero2010-05-19 08:50:51 +0200
committer David Somero2010-05-19 08:50:51 +0200
commitcec72710c91b80fe4d2423050a88ef72a56f6c31 (patch)
treecd7a411e505617b9c352fbb72b74630d350430a6 /system/xar
parentff156f357e06a7f765dca9b67b172f120f469726 (diff)
downloadslackbuilds-cec72710c91b80fe4d2423050a88ef72a56f6c31.tar.gz
system/xar: Fixed for bash4.
Diffstat (limited to 'system/xar')
-rwxr-xr-xsystem/xar/xar.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/xar/xar.SlackBuild b/system/xar/xar.SlackBuild
index dd2db12f13..0a37e01fbd 100755
--- a/system/xar/xar.SlackBuild
+++ b/system/xar/xar.SlackBuild
@@ -74,12 +74,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 || true
- 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 {} \;