summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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
commit8c16dbcf317ca08012fcaa29bf318e3de76ba560 (patch)
tree7f52528e5c88aba1727235235901359183c9fbeb
parent71784a5e72cfc783199fea575422a31f06f60dbb (diff)
downloadslackbuilds-8c16dbcf317ca08012fcaa29bf318e3de76ba560.tar.gz
slackbuilds-8c16dbcf317ca08012fcaa29bf318e3de76ba560.tar.xz
graphics/gliv: Fixed for bash4.
-rw-r--r--graphics/gliv/gliv.SlackBuild8
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 {} \;