diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:59 -0400 |
commit | 8c16dbcf317ca08012fcaa29bf318e3de76ba560 (patch) | |
tree | 7f52528e5c88aba1727235235901359183c9fbeb /graphics/gliv | |
parent | 71784a5e72cfc783199fea575422a31f06f60dbb (diff) | |
download | slackbuilds-8c16dbcf317ca08012fcaa29bf318e3de76ba560.tar.gz |
graphics/gliv: Fixed for bash4.
Diffstat (limited to 'graphics/gliv')
-rw-r--r-- | graphics/gliv/gliv.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/graphics/gliv/gliv.SlackBuild b/graphics/gliv/gliv.SlackBuild index cf03607afe..a464f6fd0e 100644 --- a/graphics/gliv/gliv.SlackBuild +++ b/graphics/gliv/gliv.SlackBuild @@ -52,12 +52,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 {} \; |