diff options
author | PJ Eby <distutils-sig@python.org> | 2005-11-04 03:06:52 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-11-04 03:06:52 +0000 |
commit | d092afc47ef99d19ab6f1dbb8b3b14c50edf3eb7 (patch) | |
tree | 8ac0c4f85263d0f824e4034216407c8a0a4827fa /setuptools/command/install.py | |
parent | 64dd39447f85cf172bd380f5386b452fae132db1 (diff) | |
download | external_python_setuptools-d092afc47ef99d19ab6f1dbb8b3b14c50edf3eb7.tar.gz external_python_setuptools-d092afc47ef99d19ab6f1dbb8b3b14c50edf3eb7.tar.bz2 external_python_setuptools-d092afc47ef99d19ab6f1dbb8b3b14c50edf3eb7.zip |
Workaround for broken DISTUTILS_DEBUG output.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041393
Diffstat (limited to 'setuptools/command/install.py')
-rw-r--r-- | setuptools/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py index 78d32bef..6a34ab54 100644 --- a/setuptools/command/install.py +++ b/setuptools/command/install.py @@ -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] |