diff options
author | Robert Kern <robert.kern@gmail.com> | 2006-02-09 19:06:53 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2006-02-09 19:06:53 +0000 |
commit | f5209cbd46b7d6ad0a0960630189670adb2b3ccb (patch) | |
tree | 3cd4cfd09927195b2b01209f0ec9a8a2c9424f8f /numpy/distutils/fcompiler/absoft.py | |
parent | ddf6e61b8c92311ec3215252aa117fd7fdaaf8ef (diff) | |
download | numpy-f5209cbd46b7d6ad0a0960630189670adb2b3ccb.tar.gz |
Back out mistaken commit
Diffstat (limited to 'numpy/distutils/fcompiler/absoft.py')
-rw-r--r-- | numpy/distutils/fcompiler/absoft.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/absoft.py b/numpy/distutils/fcompiler/absoft.py index 638879451..31ae2c772 100644 --- a/numpy/distutils/fcompiler/absoft.py +++ b/numpy/distutils/fcompiler/absoft.py @@ -17,7 +17,7 @@ class AbsoftFCompiler(FCompiler): compiler_type = 'absoft' #version_pattern = r'FORTRAN 77 Compiler (?P<version>[^\s*,]*).*?Absoft Corp' - version_pattern = r'(f90:.*?(Absoft Pro FORTRAN Version|FORTRAN 77 Compiler|Absoft Fortran Compiler Version|Version))'+\ + version_pattern = r'(f90:.*?(Absoft Pro FORTRAN Version|FORTRAN 77 Compiler|Absoft Fortran Compiler Version))'+\ r' (?P<version>[^\s*,]*)(.*?Absoft Corp|)' # samt5735(8)$ f90 -V -c dummy.f @@ -114,7 +114,7 @@ class AbsoftFCompiler(FCompiler): "-YCOM_SFX=_","-YEXT_SFX=_","-YEXT_NAMES=LCS"]) if self.get_version(): if self.get_version()>'4.6': - opt.extend(["-YDEALLOC=ALL"]) + opt.extend(["-YDEALLOC=ALL"]) return opt def get_flags_fix(self): |