Commit d092afc4 authored by PJ Eby's avatar PJ Eby

Workaround for broken DISTUTILS_DEBUG output.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041393
parent 64dd3944
......@@ -13,6 +13,7 @@ class install(_install):
def initialize_options(self):
_install.initialize_options(self)
self.old_and_unmanageable = None
self.no_compile = None # make DISTUTILS_DEBUG work right!
def handle_extra_path(self):
# We always ignore extra_path, because we always install eggs
......@@ -38,7 +39,6 @@ class install(_install):
)
cmd.ensure_finalized() # finalize before bdist_egg munges install cmd
self.run_command('bdist_egg')
args = [self.distribution.get_command_obj('bdist_egg').egg_output]
......
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