diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2024-03-31 11:33:43 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-05 15:18:13 +0700 |
commit | 27ab275f39ef8b35a329c57c8daccb357ea1907d (patch) | |
tree | f4de99f9f4f73dc60276b23d8bc2be49d7e82d7c /python/python3-constantly | |
parent | 9fff40b63df375441a24c667dae0758f24b0a5d5 (diff) |
python/python3-constantly: Fix PYTHONPATH.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-constantly')
-rw-r--r-- | python/python3-constantly/python3-constantly.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/python3-constantly/python3-constantly.SlackBuild b/python/python3-constantly/python3-constantly.SlackBuild index f47f43efa0e23..afe1ebf380c33 100644 --- a/python/python3-constantly/python3-constantly.SlackBuild +++ b/python/python3-constantly/python3-constantly.SlackBuild @@ -85,7 +85,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 {} \; -export PYTHONPATH=/opt/python3.9/site-packages/ +PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') +export PYTHONPATH=/opt/python$PYVER/site-packages/ python3 setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |