aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/install.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/install.py')
-rw-r--r--setuptools/command/install.py2
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]