diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:39 -0400 |
commit | c3f12677fd5367186a9ee9c800d5e835f7477c71 (patch) | |
tree | 36850e0b9d2ea9c26dbc2a23d104bd20dd3b1199 | |
parent | 06da431264273fdc95a70c866b26a17bec31a12e (diff) | |
download | slackbuilds-c3f12677fd5367186a9ee9c800d5e835f7477c71.tar.gz |
network/python-twisted: Fixed for bash4.
-rw-r--r-- | network/python-twisted/python-twisted.SlackBuild | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/network/python-twisted/python-twisted.SlackBuild b/network/python-twisted/python-twisted.SlackBuild index 9af06f18f1..8c83b154e9 100644 --- a/network/python-twisted/python-twisted.SlackBuild +++ b/network/python-twisted/python-twisted.SlackBuild @@ -65,11 +65,8 @@ 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 - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs strip -g 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/man ( cd $PKG/usr/man |