diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2023-04-18 01:03:59 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2023-05-03 01:05:22 -0400 |
commit | 7a3409f3d060e3bf4a910fa1374d261f02242bce (patch) | |
tree | 8138d0ae6405c433389b84326ef9bfbf5d984540 /mesonbuild/modules/python.py | |
parent | 9dbe718eb64ea136f3a7db03b305df5831792631 (diff) | |
download | meson-7a3409f3d060e3bf4a910fa1374d261f02242bce.zip meson-7a3409f3d060e3bf4a910fa1374d261f02242bce.tar.gz meson-7a3409f3d060e3bf4a910fa1374d261f02242bce.tar.bz2 |
python bytecompile: use correct install tag
Diffstat (limited to 'mesonbuild/modules/python.py')
-rw-r--r-- | mesonbuild/modules/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 984d724..8588c4c 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 |