summaryrefslogtreecommitdiffstats
path: root/development/help2man
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:33:35 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:33:35 -0400
commit11ac0d4734decd8987e25aae7aa2492b40a90999 (patch)
treeef9712ca18fe34f0ab80a8443ed844b29d97b03a /development/help2man
parentf95565e56fd88df69f9b649bc39ab73bda565d26 (diff)
downloadslackbuilds-11ac0d4734decd8987e25aae7aa2492b40a90999.tar.gz
slackbuilds-11ac0d4734decd8987e25aae7aa2492b40a90999.tar.xz
development/help2man: Fixed for bash4.
Diffstat (limited to 'development/help2man')
-rw-r--r--development/help2man/help2man.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/development/help2man/help2man.SlackBuild b/development/help2man/help2man.SlackBuild
index 7a7b33535e..a5bac87e3f 100644
--- a/development/help2man/help2man.SlackBuild
+++ b/development/help2man/help2man.SlackBuild
@@ -71,12 +71,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
-)
+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 {} \;