summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-03-19 21:56:34 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2010-03-19 21:56:34 (GMT)
commit7c4afcb1c4cc04d649db648c663fd50189b72034 (patch)
tree2ef3a5f0f9ea864820e7d7fb57e0b204da30a956 /Lib/distutils/command
parentf7239567ea354a9b0fc86daecf97bd88403c0c46 (diff)
downloadcpython-7c4afcb1c4cc04d649db648c663fd50189b72034.zip
cpython-7c4afcb1c4cc04d649db648c663fd50189b72034.tar.gz
cpython-7c4afcb1c4cc04d649db648c663fd50189b72034.tar.bz2
Fixed #2698 - now reads the compiler option when creating the compiler
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 1596586..bd61bc5 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -310,7 +310,7 @@ class build_ext(Command):
# Setup the CCompiler object that we'll use to do all the
# compiling and linking
- self.compiler = new_compiler(compiler=None,
+ self.compiler = new_compiler(compiler=self.compiler,
verbose=self.verbose,
dry_run=self.dry_run,
force=self.force)