From 6b5e827d0dbba705426ac22d2eedb4b40bac806c Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:39:46 -0400 Subject: misc/chmlib-examples: Fixed for bash4. --- misc/chmlib-examples/chmlib-examples.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'misc/chmlib-examples') diff --git a/misc/chmlib-examples/chmlib-examples.SlackBuild b/misc/chmlib-examples/chmlib-examples.SlackBuild index 14246b6972..9c4a1450f0 100644 --- a/misc/chmlib-examples/chmlib-examples.SlackBuild +++ b/misc/chmlib-examples/chmlib-examples.SlackBuild @@ -78,12 +78,8 @@ make install DESTDIR=$PKG # These are part of the chmlib package rm -rf $PKG/usr/lib${LIBDIRSUFFIX} $PKG/usr/include -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null - 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING* NEWS README $PKG/usr/doc/$PRGNAM-$VERSION -- cgit v1.2.3