diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:06 -0400 |
commit | 4cc628b473c5ad1730768e0de4734cdf15ceb639 (patch) | |
tree | eb59b2a69b0dd184a6b72cee51061b7164957e29 /misc | |
parent | ff4c6479720c4cf9955900ee5cab0eb7fd427dd7 (diff) | |
download | slackbuilds-4cc628b473c5ad1730768e0de4734cdf15ceb639.tar.gz |
misc/lbdb: Fixed for bash4.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/lbdb/lbdb.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/lbdb/lbdb.SlackBuild b/misc/lbdb/lbdb.SlackBuild index 4b8ed85a4b..8f42823843 100644 --- a/misc/lbdb/lbdb.SlackBuild +++ b/misc/lbdb/lbdb.SlackBuild @@ -73,12 +73,8 @@ make install_prefix=$PKG install mv $PKG/etc/lbdb_ldap.rc $PKG/etc/lbdb_ldap.rc.new mv $PKG/etc/lbdb.rc $PKG/etc/lbdb.rc.new -( 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 {} \; |