diff options
Diffstat (limited to 'graphics/optipng')
-rw-r--r-- | graphics/optipng/optipng.SlackBuild | 8 |
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 {} \; |