summaryrefslogtreecommitdiffstats
path: root/network/openrdate
diff options
context:
space:
mode:
author David Somero2010-05-19 08:44:56 +0200
committer David Somero2010-05-19 08:44:56 +0200
commitf38f9de2911b37a7c5d3aa8888593773b3b04a14 (patch)
treee13deece922e301725006ca56d150fb66501af86 /network/openrdate
parent3f9886a4ebba6662c931b9156a3879e1fc44fbe8 (diff)
downloadslackbuilds-f38f9de2911b37a7c5d3aa8888593773b3b04a14.tar.gz
network/openrdate: Fixed for bash4.
Diffstat (limited to 'network/openrdate')
-rw-r--r--network/openrdate/openrdate.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/openrdate/openrdate.SlackBuild b/network/openrdate/openrdate.SlackBuild
index 99c8620330..91b8366166 100644
--- a/network/openrdate/openrdate.SlackBuild
+++ b/network/openrdate/openrdate.SlackBuild
@@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make DESTDIR=$PKG install
-( 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 {} \;