diff options
Diffstat (limited to 'python/pyasn1')
-rw-r--r-- | python/pyasn1/pyasn1.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/pyasn1/pyasn1.SlackBuild b/python/pyasn1/pyasn1.SlackBuild index 04937b6c32aa..e6b7eb6a6931 100644 --- a/python/pyasn1/pyasn1.SlackBuild +++ b/python/pyasn1/pyasn1.SlackBuild @@ -73,6 +73,11 @@ find -L . \ python setup.py install --root=$PKG +# Add Python3 support +if $(python3 -c 'import sys' 2>/dev/null); then + python3 setup.py install --root=$PKG +fi + find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |