summaryrefslogtreecommitdiffstats
path: root/libraries/mechanize
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:24 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:24 -0400
commitef173faf8e4c4fab6c35c343dc3fabd8b016cbc0 (patch)
tree9ebe40411c14fabe9553fd724b0a7112107722f6 /libraries/mechanize
parent889fd436a4616a698ae96b2a3f8ced830a306fec (diff)
downloadslackbuilds-ef173faf8e4c4fab6c35c343dc3fabd8b016cbc0.tar.gz
slackbuilds-ef173faf8e4c4fab6c35c343dc3fabd8b016cbc0.tar.xz
libraries/mechanize: Fixed for bash4.
Diffstat (limited to 'libraries/mechanize')
-rw-r--r--libraries/mechanize/mechanize.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/mechanize/mechanize.SlackBuild b/libraries/mechanize/mechanize.SlackBuild
index 29e36245dc..e31a8bc5d5 100644
--- a/libraries/mechanize/mechanize.SlackBuild
+++ b/libraries/mechanize/mechanize.SlackBuild
@@ -33,12 +33,8 @@ sed -i '/ez_setup/d' setup.py
python setup.py install --root=$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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a *.txt *.html $PKG/usr/doc/$PRGNAM-$VERSION