diff options
author | David Cournapeau <cournape@gmail.com> | 2008-03-21 12:49:41 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-03-21 12:49:41 +0000 |
commit | c9e6f3025b235055336cb5a05c170128e0ec9a91 (patch) | |
tree | afd5f03679f49782a86e841768e5a58e7bcce193 /numpy/distutils/command/build_clib.py | |
parent | 344a859f2398e5f63ecfdd7eb1a4614c3477725e (diff) | |
download | numpy-c9e6f3025b235055336cb5a05c170128e0ec9a91.tar.gz |
Fix typo (bug #704).
Diffstat (limited to 'numpy/distutils/command/build_clib.py')
-rw-r--r-- | numpy/distutils/command/build_clib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_clib.py b/numpy/distutils/command/build_clib.py index 0d49d7ee8..645c6427a 100644 --- a/numpy/distutils/command/build_clib.py +++ b/numpy/distutils/command/build_clib.py @@ -79,7 +79,7 @@ class build_clib(old_build_clib): force=self.force, requiref90='f90' in languages, c_compiler=self.compiler) - if self.compiler is not None: + if self.fcompiler is not None: self.fcompiler.customize(self.distribution) libraries = self.libraries |