diff options
-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 |