diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:46 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:46 -0400 |
commit | 6b5e827d0dbba705426ac22d2eedb4b40bac806c (patch) | |
tree | f3966761e3c7d570760f9da2182552a103dc0089 /misc/chmlib-examples/chmlib-examples.SlackBuild | |
parent | 72730105e4c45f5448c31d945c7d64b3b2a68a80 (diff) |
misc/chmlib-examples: Fixed for bash4.
Diffstat (limited to 'misc/chmlib-examples/chmlib-examples.SlackBuild')
-rw-r--r-- | misc/chmlib-examples/chmlib-examples.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/chmlib-examples/chmlib-examples.SlackBuild b/misc/chmlib-examples/chmlib-examples.SlackBuild index 14246b697264..9c4a1450f0ff 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 |