diff options
author | Thomas Heller <theller@ctypes.org> | 2003-06-12 17:23:58 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2003-06-12 17:23:58 (GMT) |
commit | cd494adc3b75bff0e79e25b68339989f33f2aac3 (patch) | |
tree | b1f9c67c0e42936107be2c9f733ceab3e20eb353 /Lib/distutils | |
parent | 932dab6b9ec1d6ca2a176cc77d3d27d3dfcd26a5 (diff) | |
download | cpython-cd494adc3b75bff0e79e25b68339989f33f2aac3.zip cpython-cd494adc3b75bff0e79e25b68339989f33f2aac3.tar.gz cpython-cd494adc3b75bff0e79e25b68339989f33f2aac3.tar.bz2 |
Fix for sf # 749210, wininst isn't build correctly after building zip.
The problem was that subcommands were not reinitialized.
Bugfix candidate, will backport myself.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index 5acca11..3c4c893 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -100,7 +100,7 @@ class bdist_wininst (Command): if not self.skip_build: self.run_command('build') - install = self.reinitialize_command('install') + install = self.reinitialize_command('install', reinit_subcommands=1) install.root = self.bdist_dir install.skip_build = self.skip_build install.warn_dir = 0 |