diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2024-03-31 14:35:31 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-05 15:18:18 +0700 |
commit | dd475e9398b2616f4c0e43d8dc277dd9f64f0d94 (patch) | |
tree | 84a45b65e390fb031766927ac827fd087e141eeb /python/python3-whatthepatch | |
parent | b76eb362829a1cb6265c341cd923c179528c54cc (diff) |
python/python3-whatthepatch: Fix PYTHONPATH.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-whatthepatch')
-rw-r--r-- | python/python3-whatthepatch/python3-whatthepatch.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/python3-whatthepatch/python3-whatthepatch.SlackBuild b/python/python3-whatthepatch/python3-whatthepatch.SlackBuild index 9cb0eb3122..7310c7a557 100644 --- a/python/python3-whatthepatch/python3-whatthepatch.SlackBuild +++ b/python/python3-whatthepatch/python3-whatthepatch.SlackBuild @@ -78,7 +78,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 -m build --no-isolation python3 -m installer -d "$PKG" dist/*.whl |