Kaydet (Commit) cd494adc authored tarafından Thomas Heller's avatar Thomas Heller

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.
üst 932dab6b
...@@ -100,7 +100,7 @@ class bdist_wininst (Command): ...@@ -100,7 +100,7 @@ class bdist_wininst (Command):
if not self.skip_build: if not self.skip_build:
self.run_command('build') self.run_command('build')
install = self.reinitialize_command('install') install = self.reinitialize_command('install', reinit_subcommands=1)
install.root = self.bdist_dir install.root = self.bdist_dir
install.skip_build = self.skip_build install.skip_build = self.skip_build
install.warn_dir = 0 install.warn_dir = 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment