diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:17 -0400 |
commit | b374886dc339beb961bfc9d8ff818842caef0844 (patch) | |
tree | b5b41173b5c28b1dbe677e7ac6e33a8249cd797c /system/coolkey | |
parent | 5233019a8e97a5cf7310f45dff3d62da66e6dbe4 (diff) | |
download | slackbuilds-b374886dc339beb961bfc9d8ff818842caef0844.tar.gz |
system/coolkey: Fixed for bash4.
Diffstat (limited to 'system/coolkey')
-rw-r--r-- | system/coolkey/coolkey.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/coolkey/coolkey.SlackBuild b/system/coolkey/coolkey.SlackBuild index 69c6266054..09bb80162a 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 |