diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-12-11 22:48:32 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-12-11 22:48:32 (GMT) |
commit | b227227cb574a7bad6ed6d5cfc3ef23b10b1919f (patch) | |
tree | 0612d836da68c45bf74bbd239cbfb2223c36f7b1 /Tools/msi/make_zip.py | |
parent | 4cc30ae31341ba233a861899be7d225519c71830 (diff) | |
parent | e711cc0f222ce22bad0ee84b3d27eccc2ad8b63d (diff) | |
download | cpython-b227227cb574a7bad6ed6d5cfc3ef23b10b1919f.zip cpython-b227227cb574a7bad6ed6d5cfc3ef23b10b1919f.tar.gz cpython-b227227cb574a7bad6ed6d5cfc3ef23b10b1919f.tar.bz2 |
Issue #28783: Replaces bdist_wininst in nuget packages with stub
Diffstat (limited to 'Tools/msi/make_zip.py')
-rw-r--r-- | Tools/msi/make_zip.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py index 09f6fe3..8dbe83e 100644 --- a/Tools/msi/make_zip.py +++ b/Tools/msi/make_zip.py @@ -79,10 +79,6 @@ def include_in_lib(p): if name in EXCLUDE_FILE_FROM_LIBRARY: return False - # Special code is included below to patch this file back in - if [d.lower() for d in p.parts[-3:]] == ['distutils', 'command', '__init__.py']: - return False - suffix = p.suffix.lower() return suffix not in {'.pyc', '.pyo', '.exe'} @@ -218,8 +214,8 @@ def main(): extra_files = [] if s == 'Lib' and p == '**/*': extra_files.append(( - source / 'tools' / 'msi' / 'distutils.command.__init__.py', - Path('distutils') / 'command' / '__init__.py' + source / 'tools' / 'msi' / 'distutils.command.bdist_wininst.py', + Path('distutils') / 'command' / 'bdist_wininst.py' )) copied = copy_to_layout(temp / t.rstrip('/'), chain(files, extra_files)) print('Copied {} files'.format(copied)) |