[Python-checkins] commit of r41393 - sandbox/trunk/setuptools/setuptools/command

phillip.eby@python.org phillip.eby at python.org
Fri Nov 4 04:06:54 CET 2005


Author: phillip.eby
Date: Fri Nov  4 04:06:52 2005
New Revision: 41393

Modified:
   sandbox/trunk/setuptools/setuptools/command/install.py
Log:
Workaround for broken DISTUTILS_DEBUG output.


Modified: sandbox/trunk/setuptools/setuptools/command/install.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/install.py	(original)
+++ sandbox/trunk/setuptools/setuptools/command/install.py	Fri Nov  4 04:06:52 2005
@@ -13,6 +13,7 @@
     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 @@
         )
         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]
 


More information about the Python-checkins mailing list