diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:17 -0400 |
commit | bdd0583fb706eb6715ecf7c5b8a566c0837fee1b (patch) | |
tree | 154beafc14f536d8b927e779aa8f14179e813637 | |
parent | 18c0c69c1633ea78852c5b7fba71e92f8979b436 (diff) |
libraries/python-transaction: Fixed for bash4.
-rw-r--r-- | libraries/python-transaction/python-transaction.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/python-transaction/python-transaction.SlackBuild b/libraries/python-transaction/python-transaction.SlackBuild index 9653e5355e1a..eac518767250 100644 --- a/libraries/python-transaction/python-transaction.SlackBuild +++ b/libraries/python-transaction/python-transaction.SlackBuild @@ -47,12 +47,8 @@ find . \ python setup.py build || exit 1 python setup.py install --root=$PKG || exit 1 -( 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 \ |