diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:41 -0400 |
commit | 044c05cc12948b1842318bc751f8ed5327a79baf (patch) | |
tree | 27a41cc0cc706e125cc23254357ab6ebd9159812 /network/zabbix_agentd | |
parent | 53da41574dcb65c19273e829a55a7435957b6435 (diff) | |
download | slackbuilds-044c05cc12948b1842318bc751f8ed5327a79baf.tar.gz |
network/zabbix_agentd: Fixed for bash4.
Diffstat (limited to 'network/zabbix_agentd')
-rw-r--r-- | network/zabbix_agentd/zabbix_agentd.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/zabbix_agentd/zabbix_agentd.SlackBuild b/network/zabbix_agentd/zabbix_agentd.SlackBuild index 24145475c7..6a0f7e0687 100644 --- a/network/zabbix_agentd/zabbix_agentd.SlackBuild +++ b/network/zabbix_agentd/zabbix_agentd.SlackBuild @@ -84,12 +84,8 @@ CXXFLAGS="$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 || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true -) +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 {} \; |