summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-04-18 01:03:59 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-05-03 01:05:22 -0400
commit7a3409f3d060e3bf4a910fa1374d261f02242bce (patch)
tree8138d0ae6405c433389b84326ef9bfbf5d984540
parent9dbe718eb64ea136f3a7db03b305df5831792631 (diff)
downloadmeson-7a3409f3d060e3bf4a910fa1374d261f02242bce.tar.gz
python bytecompile: use correct install tag
-rw-r--r--mesonbuild/modules/python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py
index 984d724c3..8588c4cbb 100644
--- a/mesonbuild/modules/python.py
+++ b/mesonbuild/modules/python.py
@@ -347,7 +347,7 @@ class PythonModule(ExtensionModule):
json.dump(manifest_json, f)
cmd = i.command + [pycompile, manifest, str(optlevel)]
- script = backend.get_executable_serialisation(cmd, verbose=True,
+ script = backend.get_executable_serialisation(cmd, verbose=True, tag='python-runtime',
installdir_map={'py_purelib': i.purelib, 'py_platlib': i.platlib})
ret.append(script)
return ret