From b374886dc339beb961bfc9d8ff818842caef0844 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:48:17 -0400 Subject: system/coolkey: Fixed for bash4. --- system/coolkey/coolkey.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/coolkey/coolkey.SlackBuild') diff --git a/system/coolkey/coolkey.SlackBuild b/system/coolkey/coolkey.SlackBuild index 69c626605456..09bb80162a44 100644 --- a/system/coolkey/coolkey.SlackBuild +++ b/system/coolkey/coolkey.SlackBuild @@ -73,12 +73,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ cp -a ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION -- cgit v1.2.3