diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:22 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:22 -0400 |
commit | 889fd436a4616a698ae96b2a3f8ced830a306fec (patch) | |
tree | 11bc926864feaaf4e051d78069e4c95710bf4b08 /libraries/lxml | |
parent | 8beb4a91776c40ebc1d0bdcf1b7c2ab2fee91022 (diff) | |
download | slackbuilds-889fd436a4616a698ae96b2a3f8ced830a306fec.tar.gz |
libraries/lxml: Fixed for bash4.
Diffstat (limited to 'libraries/lxml')
-rw-r--r-- | libraries/lxml/lxml.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/lxml/lxml.SlackBuild b/libraries/lxml/lxml.SlackBuild index 7c18390b08..8e5eedd62a 100644 --- a/libraries/lxml/lxml.SlackBuild +++ b/libraries/lxml/lxml.SlackBuild @@ -39,12 +39,8 @@ find . \ CFLAGS="$SLKCFLAGS" \ 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 || true -) +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 \ |