Commit a3d2ad2b authored by PJ Eby's avatar PJ Eby

Fix for http://bugs.python.org/setuptools/issue11 (backport from trunk)

--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4065951
parent 49dfb4a1
...@@ -21,8 +21,9 @@ class bdist_wininst(_bdist_wininst): ...@@ -21,8 +21,9 @@ class bdist_wininst(_bdist_wininst):
installer_name = os.path.join(self.dist_dir, installer_name = os.path.join(self.dist_dir,
"%s.win32.exe" % fullname) "%s.win32.exe" % fullname)
pyversion = 'any' pyversion = 'any'
good = ('bdist_wininst', pyversion, installer_name)
dist_files.append(('bdist_wininst', pyversion, installer_name)) if good not in dist_files:
dist_files.append(good)
def reinitialize_command (self, command, reinit_subcommands=0): def reinitialize_command (self, command, reinit_subcommands=0):
cmd = self.distribution.reinitialize_command( cmd = self.distribution.reinitialize_command(
......
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