From: Thomas Heller Date: Thu, 12 Jun 2003 17:29:57 +0000 (+0000) Subject: Backport of my checkin to rev 1.46: X-Git-Tag: 2.2~71 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=462203fc00df35c18fa7aa628f805b1380fedd82;p=thirdparty%2FPython%2Fcpython.git Backport of my checkin to rev 1.46: 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. --- diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index 8b72bcba34da..27deda366227 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -82,7 +82,7 @@ class bdist_wininst (Command): self.run_command('build') - install = self.reinitialize_command('install') + install = self.reinitialize_command('install', reinit_subcommands=1) install.root = self.bdist_dir install.warn_dir = 0