From: Greg Ward Date: Sun, 3 Oct 1999 21:08:42 +0000 (+0000) Subject: Pass 'force' flag to 'new_compiler()'. X-Git-Tag: v1.6a1~840 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c6204a87fb6da2157ac820a51057dffc8f98d6a;p=python Pass 'force' flag to 'new_compiler()'. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 8c5065f6bc..f284092b3e 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -121,8 +121,9 @@ class BuildExt (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.distribution.verbose, - dry_run=self.distribution.dry_run) + verbose=self.verbose, + dry_run=self.dry_run, + force=self.force) if self.include_dirs is not None: self.compiler.set_include_dirs (self.include_dirs) if self.define is not None: