summaryrefslogtreecommitdiffstats
path: root/system/hercules
diff options
context:
space:
mode:
author David Somero2010-05-19 08:49:13 +0200
committer David Somero2010-05-19 08:49:13 +0200
commit833cc4bd03cd9f46dcd11e214c4b6ed618e8051d (patch)
tree41c24f85d46e2ca2da0251bee8c5e4ecae0996af /system/hercules
parent8050fa9747c0d27b95035a41ed3612042bb668c4 (diff)
downloadslackbuilds-833cc4bd03cd9f46dcd11e214c4b6ed618e8051d.tar.gz
system/hercules: Fixed for bash4.
Diffstat (limited to 'system/hercules')
-rw-r--r--system/hercules/hercules.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/hercules/hercules.SlackBuild b/system/hercules/hercules.SlackBuild
index 052a73b9ec..c070c65c4d 100644
--- a/system/hercules/hercules.SlackBuild
+++ b/system/hercules/hercules.SlackBuild
@@ -59,12 +59,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 {} \;