diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:51 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:51 -0400 |
commit | cec72710c91b80fe4d2423050a88ef72a56f6c31 (patch) | |
tree | cd7a411e505617b9c352fbb72b74630d350430a6 /system/xar | |
parent | ff156f357e06a7f765dca9b67b172f120f469726 (diff) | |
download | slackbuilds-cec72710c91b80fe4d2423050a88ef72a56f6c31.tar.gz |
system/xar: Fixed for bash4.
Diffstat (limited to 'system/xar')
-rwxr-xr-x | system/xar/xar.SlackBuild | 8 |
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 {} \; |