diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:13 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:13 -0400 |
commit | 833cc4bd03cd9f46dcd11e214c4b6ed618e8051d (patch) | |
tree | 41c24f85d46e2ca2da0251bee8c5e4ecae0996af /system/hercules | |
parent | 8050fa9747c0d27b95035a41ed3612042bb668c4 (diff) | |
download | slackbuilds-833cc4bd03cd9f46dcd11e214c4b6ed618e8051d.tar.gz |
system/hercules: Fixed for bash4.
Diffstat (limited to 'system/hercules')
-rw-r--r-- | system/hercules/hercules.SlackBuild | 8 |
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 {} \; |