diff options
author | Greg Ward <gward@python.net> | 2000-03-22 00:11:21 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-22 00:11:21 (GMT) |
commit | 4620f306a4d46ca6e455247cfa5c900765d4b9d1 (patch) | |
tree | b7e0f95b9f66e6f8918fb4611f6c1f8e935059bc /Lib | |
parent | a27e9fb19fafcd32578bd575fa2e0157124f7e1e (diff) | |
download | cpython-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()'.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 3 |
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: |