diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-25 21:47:16 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-25 21:47:16 +0000 |
commit | 468e6532a29e6302986a75cfe19eca7670c5a460 (patch) | |
tree | 7c2275f0c5c5ee3e271773ed592516e0e79b95d9 /numpy/distutils/command/config.py | |
parent | 1f4f410baef0547e26dc68d1ea3c60d140602a15 (diff) | |
download | numpy-468e6532a29e6302986a75cfe19eca7670c5a460.tar.gz |
More fixes for building scipy with Mingw32 compilers.
Diffstat (limited to 'numpy/distutils/command/config.py')
-rw-r--r-- | numpy/distutils/command/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index 52bb31071..11d630993 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -27,7 +27,8 @@ class config(old_config): from numpy.distutils.fcompiler import FCompiler, new_fcompiler if not isinstance(self.fcompiler, FCompiler): self.fcompiler = new_fcompiler(compiler=self.fcompiler, - dry_run=self.dry_run, force=1) + dry_run=self.dry_run, force=1, + c_compiler=self.compiler) if self.fcompiler is not None: self.fcompiler.customize(self.distribution) if self.fcompiler.get_version(): |