aboutsummaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-02-09 19:11:51 -0500
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2022-02-14 14:45:26 +0530
commit37be39bc69789a7b2cb9415ca61e0ce4209dc666 (patch)
treedbc6504146954da9d735f459ecf5fa8b861e6a46 /packaging
parent7a1e8eecaf3ddcbdfe18c8c05ae0c02f0464f751 (diff)
downloadmeson-37be39bc69789a7b2cb9415ca61e0ce4209dc666.zip
meson-37be39bc69789a7b2cb9415ca61e0ce4209dc666.tar.gz
meson-37be39bc69789a7b2cb9415ca61e0ce4209dc666.tar.bz2
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')
-rwxr-xr-xpackaging/createmsi.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/packaging/createmsi.py b/packaging/createmsi.py
index d09fa78..653caa5 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',
]