summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_ext.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r--numpy/distutils/command/build_ext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py
index aac164795..63cfec4c4 100644
--- a/numpy/distutils/command/build_ext.py
+++ b/numpy/distutils/command/build_ext.py
@@ -178,8 +178,8 @@ class build_ext (old_build_ext):
fcompiler = self._f77_compiler
if fcompiler:
ctype = fcompiler.compiler_type
- if fcompiler and fcompiler.get_version():
fcompiler.customize(self.distribution)
+ if fcompiler and fcompiler.get_version():
fcompiler.customize_cmd(self)
fcompiler.show_customization()
else:
@@ -200,8 +200,8 @@ class build_ext (old_build_ext):
fcompiler = self._f90_compiler
if fcompiler:
ctype = fcompiler.compiler_type
- if fcompiler and fcompiler.get_version():
fcompiler.customize(self.distribution)
+ if fcompiler and fcompiler.get_version():
fcompiler.customize_cmd(self)
fcompiler.show_customization()
else: