diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2024-03-31 14:35:29 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-05 15:18:17 +0700 |
commit | 866dc9184c00d0d6d1ae9ce4ee30b58cbb4e184f (patch) | |
tree | b368b73819f6bdf273c949c814edffae025e9a3f /python/python3-qbittorrent-api | |
parent | b4902e5e0ef929fc564c567458fe38b0d3cc072a (diff) |
python/python3-qbittorrent-api: Fix PYTHONPATH.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-qbittorrent-api')
-rw-r--r-- | python/python3-qbittorrent-api/python3-qbittorrent-api.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/python3-qbittorrent-api/python3-qbittorrent-api.SlackBuild b/python/python3-qbittorrent-api/python3-qbittorrent-api.SlackBuild index 38bacd69074f1..6bb638b2956da 100644 --- a/python/python3-qbittorrent-api/python3-qbittorrent-api.SlackBuild +++ b/python/python3-qbittorrent-api/python3-qbittorrent-api.SlackBuild @@ -62,7 +62,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/ export SETUPTOOLS_SCM_PRETEND_VERSION=$VERSION python3 -m build --wheel --no-isolation |