diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:56 -0400 |
commit | f38f9de2911b37a7c5d3aa8888593773b3b04a14 (patch) | |
tree | e13deece922e301725006ca56d150fb66501af86 /network/openrdate | |
parent | 3f9886a4ebba6662c931b9156a3879e1fc44fbe8 (diff) |
network/openrdate: Fixed for bash4.
Diffstat (limited to 'network/openrdate')
-rw-r--r-- | network/openrdate/openrdate.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/openrdate/openrdate.SlackBuild b/network/openrdate/openrdate.SlackBuild index 99c86203308a..91b836616698 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 {} \; |