diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:46 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:46 -0400 |
commit | 4031b78e9fe24188f5f2d44079913ffe42ba7bf6 (patch) | |
tree | 8002fa19fe91ec01a3e2ed0c9c24fdff0adc992a /system/vlock | |
parent | bba87345a3b07e42992d6b6a96bde62b0053ee08 (diff) | |
download | slackbuilds-4031b78e9fe24188f5f2d44079913ffe42ba7bf6.tar.gz |
system/vlock: Fixed for bash4.
Diffstat (limited to 'system/vlock')
-rw-r--r-- | system/vlock/vlock.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/vlock/vlock.SlackBuild b/system/vlock/vlock.SlackBuild index 9693d50ed5..3a87adf8d7 100644 --- a/system/vlock/vlock.SlackBuild +++ b/system/vlock/vlock.SlackBuild @@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG VLOCK_GROUP="$VLOCK_GRP" -( 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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |