]> granicus.if.org Git - python/commitdiff
Pass 'force' flag to 'new_compiler()'.
authorGreg Ward <gward@python.net>
Sun, 3 Oct 1999 21:08:42 +0000 (21:08 +0000)
committerGreg Ward <gward@python.net>
Sun, 3 Oct 1999 21:08:42 +0000 (21:08 +0000)
Lib/distutils/command/build_ext.py

index 8c5065f6bcd331507534948823a4a83b17b6a99c..f284092b3e7b7d45345921144b9fd303e450e731 100644 (file)
@@ -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: