diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-21 21:32:07 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-06-02 01:02:22 +0700 |
commit | 8a5bc0522efa4c23584748b06ce30aa51471b028 (patch) | |
tree | 600996813170786d21a416275cfa974f4b734049 /python | |
parent | 608a6cd6b24bc1a861175b00944e29edd51009f1 (diff) | |
download | slackbuilds-8a5bc0522efa4c23584748b06ce30aa51471b028.tar.gz |
python/Pyro4: Convert python to python2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/Pyro4/Pyro4.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/python/Pyro4/Pyro4.SlackBuild b/python/Pyro4/Pyro4.SlackBuild index eee810cf8d..4ae09ad28d 100644 --- a/python/Pyro4/Pyro4.SlackBuild +++ b/python/Pyro4/Pyro4.SlackBuild @@ -69,12 +69,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python setup.py install --root=$PKG - -# Python 3 support. -if $(python3 -c 'import sys' 2>/dev/null); then - python3 setup.py install --root=$PKG -fi +python2 setup.py install --root=$PKG +python3 setup.py install --root=$PKG mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a docs/ examples/ LICENSE PKG-INFO $PKG/usr/doc/$PRGNAM-$VERSION |