diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2019-11-12 09:12:02 -0800 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-11-23 16:01:57 +0700 |
commit | 52facc971acd6e0129288dad283c2f8e01c8825e (patch) | |
tree | 29fd8f8b113a3bb7e353b1bc986556e361c3d3f6 | |
parent | 4acd325f4f938e755a60f9bf8acccebcfd06a3e5 (diff) | |
download | slackbuilds-52facc971acd6e0129288dad283c2f8e01c8825e.tar.gz |
gis/rasterio: Enable Python 3 by default.
-rw-r--r-- | gis/rasterio/rasterio.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gis/rasterio/rasterio.SlackBuild b/gis/rasterio/rasterio.SlackBuild index bedc9968c2..2edf4dd460 100644 --- a/gis/rasterio/rasterio.SlackBuild +++ b/gis/rasterio/rasterio.SlackBuild @@ -71,10 +71,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 {} \; -if $(python3 -c 'import sys' 2>/dev/null); then - python3 setup.py install --root=$PKG -fi -python setup.py install --root=$PKG +python2 setup.py install --root=$PKG +python3 setup.py install --root=$PKG 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 |