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()'.
This commit is contained in:
Greg Ward 2000-03-22 00:11:21 +00:00
parent a27e9fb19f
commit 4620f306a4

View 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: