diff options
Diffstat (limited to 'numpy/distutils/fcompiler/g95.py')
-rw-r--r-- | numpy/distutils/fcompiler/g95.py | 2 |
1 files changed, 1 insertions, 1 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"], |