diff options
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/g95.py | 2 | ||||
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/g95.py b/numpy/distutils/fcompiler/g95.py index 7a42c3d11..8fe79bfbb 100644 --- a/numpy/distutils/fcompiler/g95.py +++ b/numpy/distutils/fcompiler/g95.py @@ -16,7 +16,7 @@ class G95FCompiler(FCompiler): version_pattern = r'G95 \((GCC (?P<gccversion>[\d.]+)|.*?) \(g95 (?P<version>.*)!\) (?P<date>.*)\).*' # $ g95 --version # G95 (GCC 4.0.3 (g95 0.90!) Aug 22 2006) - + executables = { 'version_cmd' : ["g95", "--version"], diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index 6e0f1895d..ac7984ebc 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -1,4 +1,3 @@ - import re import os import sys @@ -275,7 +274,7 @@ class Gnu95FCompiler(GnuFCompiler): def get_libraries(self): opt = GnuFCompiler.get_libraries(self) if sys.platform == 'darwin': - opt.remove('cc_dynamic') + opt.remove('cc_dynamic') return opt if __name__ == '__main__': |