diff options
author | Robert Kern <robert.kern@gmail.com> | 2006-02-09 19:04:18 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2006-02-09 19:04:18 +0000 |
commit | ddf6e61b8c92311ec3215252aa117fd7fdaaf8ef (patch) | |
tree | c608d78a9dc87187714f89d5f7509c6b40095352 /numpy/distutils/fcompiler/absoft.py | |
parent | e5e72a41b507f9d18564aa881c9482c76d399c45 (diff) | |
download | numpy-ddf6e61b8c92311ec3215252aa117fd7fdaaf8ef.tar.gz |
Fixed join() -> os.path.join()
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 31ae2c772..638879451 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_pattern = r'(f90:.*?(Absoft Pro FORTRAN Version|FORTRAN 77 Compiler|Absoft Fortran Compiler Version|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): |