From 147e932ea5d369a0a1319a8e3b05e0360581fd57 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:35:05 -0400 Subject: graphics/optipng: Fixed for bash4. --- graphics/optipng/optipng.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'graphics') 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 {} \; -- cgit v1.2.3