diff options
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 |
commit | ef173faf8e4c4fab6c35c343dc3fabd8b016cbc0 (patch) | |
tree | 9ebe40411c14fabe9553fd724b0a7112107722f6 /libraries/mechanize | |
parent | 889fd436a4616a698ae96b2a3f8ced830a306fec (diff) |
libraries/mechanize: Fixed for bash4.
Diffstat (limited to 'libraries/mechanize')
-rw-r--r-- | libraries/mechanize/mechanize.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/mechanize/mechanize.SlackBuild b/libraries/mechanize/mechanize.SlackBuild index 29e36245dc26..e31a8bc5d55d 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 |