diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2011-03-23 18:17:38 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-24 19:23:15 -0500 |
commit | 24a857c6cc4902982b68f70ba2c360c1d83d7061 (patch) | |
tree | ba3bf89104856fdf1d6c5bd8d58616dc5d40e901 /network/haproxy/haproxy.SlackBuild | |
parent | 8f1db0beb92bb478ffc59323bf873c9a9aa7fed8 (diff) | |
download | slackbuilds-24a857c6cc4902982b68f70ba2c360c1d83d7061.tar.gz |
network/haproxy: Handle .new files correctly.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/haproxy/haproxy.SlackBuild')
-rw-r--r-- | network/haproxy/haproxy.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/network/haproxy/haproxy.SlackBuild b/network/haproxy/haproxy.SlackBuild index 2513ce6fcc..517af87d56 100644 --- a/network/haproxy/haproxy.SlackBuild +++ b/network/haproxy/haproxy.SlackBuild @@ -112,10 +112,8 @@ cat $CWD/haproxy.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/haproxy.SlackBuild mv $PKG/usr/share/man $PKG/usr/ rm -rf $PKG/usr/{share,/doc/haproxy} -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |