]> granicus.if.org Git - python/commitdiff
Took out what looks like old debugging code that probably should never
authorGreg Ward <gward@python.net>
Wed, 22 Mar 2000 00:11:21 +0000 (00:11 +0000)
committerGreg Ward <gward@python.net>
Wed, 22 Mar 2000 00:11:21 +0000 (00:11 +0000)
have been checked in: was passing the PLAT environment variable as the
'plat' argument to 'new_compiler()'.

Lib/distutils/command/build_ext.py

index dfe64a114e6ffcfa5a80caa4985d6501fed8e3bd..1d8794a6e4e9a94d8300ca16871449dcc83f950c 100644 (file)
@@ -146,8 +146,7 @@ class build_ext (Command):
 
         # Setup the CCompiler object that we'll use to do all the
         # compiling and linking
-        self.compiler = new_compiler (plat=os.environ.get ('PLAT'),
-                                      verbose=self.verbose,
+        self.compiler = new_compiler (verbose=self.verbose,
                                       dry_run=self.dry_run,
                                       force=self.force)
         if self.include_dirs is not None: