From: Greg Ward Date: Wed, 22 Mar 2000 00:11:21 +0000 (+0000) Subject: Took out what looks like old debugging code that probably should never X-Git-Tag: v1.6a1~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4620f306a4d46ca6e455247cfa5c900765d4b9d1;p=python Took out what looks like old debugging code that probably should never have been checked in: was passing the PLAT environment variable as the 'plat' argument to 'new_compiler()'. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index dfe64a114e..1d8794a6e4 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -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: