summaryrefslogtreecommitdiffstats
path: root/system/pax
diff options
context:
space:
mode:
author David Somero2010-05-19 08:50:02 +0200
committer David Somero2010-05-19 08:50:02 +0200
commit92a264cbd02526ad64ad792385eb6d1f5a6b519c (patch)
tree18f08e82753e87d70d8be4b3fa87d38e20db1e9b /system/pax
parent925dd1cb1860cc6839abfcdce72b157fe818a002 (diff)
downloadslackbuilds-92a264cbd02526ad64ad792385eb6d1f5a6b519c.tar.gz
system/pax: Fixed for bash4.
Diffstat (limited to 'system/pax')
-rw-r--r--system/pax/pax.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/pax/pax.SlackBuild b/system/pax/pax.SlackBuild
index 5a9ee4ae28..4e05921b50 100644
--- a/system/pax/pax.SlackBuild
+++ b/system/pax/pax.SlackBuild
@@ -68,12 +68,8 @@ CFLAGS="$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 {} \;