diff options
author | David Somero | 2010-05-19 08:46:35 +0200 |
---|---|---|
committer | David Somero | 2010-05-19 08:46:35 +0200 |
commit | 8b54989c0bff9a331cbc8ebc0256ec3e9c09698a (patch) | |
tree | 55b9df7083bf05178f8683c250bcf8c675aad7ca /network/x11vnc/x11vnc.SlackBuild | |
parent | 346ef6fc509256b972f6527b5601bd59f88524e6 (diff) | |
download | slackbuilds-8b54989c0bff9a331cbc8ebc0256ec3e9c09698a.tar.gz |
network/x11vnc: Fixed for bash4.
Diffstat (limited to 'network/x11vnc/x11vnc.SlackBuild')
-rw-r--r-- | network/x11vnc/x11vnc.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/x11vnc/x11vnc.SlackBuild b/network/x11vnc/x11vnc.SlackBuild index d3a351a4dd..160212a5a1 100644 --- a/network/x11vnc/x11vnc.SlackBuild +++ b/network/x11vnc/x11vnc.SlackBuild @@ -70,12 +70,8 @@ CFLAGS="$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 - 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 {} \; |