From ddf6e61b8c92311ec3215252aa117fd7fdaaf8ef Mon Sep 17 00:00:00 2001 From: Robert Kern Date: Thu, 9 Feb 2006 19:04:18 +0000 Subject: Fixed join() -> os.path.join() --- numpy/distutils/fcompiler/absoft.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/distutils/fcompiler/absoft.py') 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[^\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[^\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): -- cgit v1.2.1