summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-31 04:37:40 (GMT)
committerGreg Ward <gward@python.net>2000-03-31 04:37:40 (GMT)
commit7d51034eefbadd7574f906ca3748ac0a42298544 (patch)
tree087a677c8a83ce25ae343364044335cc3a89d1d4
parent95c0b269de14f56a5b5d8fd0b57871b373b4b100 (diff)
downloadcpython-7d51034eefbadd7574f906ca3748ac0a42298544.zip
cpython-7d51034eefbadd7574f906ca3748ac0a42298544.tar.gz
cpython-7d51034eefbadd7574f906ca3748ac0a42298544.tar.bz2
Removed some old test code: don't set 'plat' when calling 'new_compiler()'.
-rw-r--r--Lib/distutils/command/build_clib.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py
index 6560fb4..f48e647 100644
--- a/Lib/distutils/command/build_clib.py
+++ b/Lib/distutils/command/build_clib.py
@@ -89,8 +89,7 @@ class build_clib (Command):
return
# Yech -- this is cut 'n pasted from build_ext.py!
- 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: