From ef173faf8e4c4fab6c35c343dc3fabd8b016cbc0 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:38:24 -0400 Subject: libraries/mechanize: Fixed for bash4. --- libraries/mechanize/mechanize.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libraries') 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 -- cgit v1.2.3