summaryrefslogtreecommitdiffstats
path: root/python/python3-meson-opt/README
diff options
context:
space:
mode:
Diffstat (limited to 'python/python3-meson-opt/README')
-rw-r--r--python/python3-meson-opt/README5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/python3-meson-opt/README b/python/python3-meson-opt/README
index 469bef365b..e72ffb354b 100644
--- a/python/python3-meson-opt/README
+++ b/python/python3-meson-opt/README
@@ -7,11 +7,12 @@ build definitions are written in a simple non-Turing complete DSL.
NOTE:
Install bin and docs to /opt/meson
- Installs module to /opt/python3.9/site-packages
+ Installs module to /opt/python$PYVER/site-packages
Add the following before the python3 build commands in your
Slackbuild to use this version over the stock one in 15.0. My testing
has shown the newer meson bin does not need to be added to PATH, but
YMMV:
-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