summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:35:05 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:35:05 -0400
commit147e932ea5d369a0a1319a8e3b05e0360581fd57 (patch)
treea79a15f003755ad6b411ecf86919e264ddbcb8f1
parentd460767fb3878c411390d902e06dd1015e4c1f10 (diff)
downloadslackbuilds-147e932ea5d369a0a1319a8e3b05e0360581fd57.tar.gz
slackbuilds-147e932ea5d369a0a1319a8e3b05e0360581fd57.tar.xz
graphics/optipng: Fixed for bash4.
-rw-r--r--graphics/optipng/optipng.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/graphics/optipng/optipng.SlackBuild b/graphics/optipng/optipng.SlackBuild
index 47fa3d405e..5ec705367b 100644
--- a/graphics/optipng/optipng.SlackBuild
+++ b/graphics/optipng/optipng.SlackBuild
@@ -42,12 +42,8 @@ make -f scripts/gcc.mak CFLAGS="$SLKCFLAGS -W -Wall"
make -f scripts/gcc.mak install DESTDIR=$PKG prefix=/usr
cd ..
-( 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 {} \;