summaryrefslogtreecommitdiffstats
path: root/system/vlock
diff options
context:
space:
mode:
author David Somero2010-05-19 08:50:46 +0200
committer David Somero2010-05-19 08:50:46 +0200
commit4031b78e9fe24188f5f2d44079913ffe42ba7bf6 (patch)
tree8002fa19fe91ec01a3e2ed0c9c24fdff0adc992a /system/vlock
parentbba87345a3b07e42992d6b6a96bde62b0053ee08 (diff)
downloadslackbuilds-4031b78e9fe24188f5f2d44079913ffe42ba7bf6.tar.gz
system/vlock: Fixed for bash4.
Diffstat (limited to 'system/vlock')
-rw-r--r--system/vlock/vlock.SlackBuild8
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 {} \;