summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-22 00:11:21 (GMT)
committerGreg Ward <gward@python.net>2000-03-22 00:11:21 (GMT)
commit4620f306a4d46ca6e455247cfa5c900765d4b9d1 (patch)
treeb7e0f95b9f66e6f8918fb4611f6c1f8e935059bc
parenta27e9fb19fafcd32578bd575fa2e0157124f7e1e (diff)
downloadcpython-4620f306a4d46ca6e455247cfa5c900765d4b9d1.zip
cpython-4620f306a4d46ca6e455247cfa5c900765d4b9d1.tar.gz
cpython-4620f306a4d46ca6e455247cfa5c900765d4b9d1.tar.bz2
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()'.
-rw-r--r--Lib/distutils/command/build_ext.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index dfe64a1..1d8794a 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: