diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-09 19:11:51 -0500 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2022-02-14 14:45:26 +0530 |
| commit | 37be39bc69789a7b2cb9415ca61e0ce4209dc666 (patch) | |
| tree | dbc6504146954da9d735f459ecf5fa8b861e6a46 /packaging/createmsi.py | |
| parent | 7a1e8eecaf3ddcbdfe18c8c05ae0c02f0464f751 (diff) | |
| download | meson-37be39bc69789a7b2cb9415ca61e0ce4209dc666.tar.gz | |
packaging: fix the MSI bundling of distutils sub-packages
Fixes regression in commit 05b5a1e56fe8f5400b65d0d69680cc6531fe74f8.
This added usage of another module in the python module's introspection
of `meson.exe runpython`, but the MSI packaging didn't adapt, causing it
to fail to be detected due to ImportError.
Fixes #9975
Diffstat (limited to 'packaging/createmsi.py')
| -rwxr-xr-x | packaging/createmsi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packaging/createmsi.py b/packaging/createmsi.py index d09fa789f..653caa5ee 100755 --- a/packaging/createmsi.py +++ b/packaging/createmsi.py @@ -72,6 +72,7 @@ def get_more_modules(): 'distutils.version', 'distutils.command.build_ext', 'distutils.command.build', + 'distutils.command.install', 'filecmp', ] |
