diff options
author | Travis Oliphant <oliphant@enthought.com> | 2004-03-04 23:48:08 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2004-03-04 23:48:08 +0000 |
commit | 144b7abfd345793c0806e3d8da9e75f2e2e89b5a (patch) | |
tree | c26cc0326bacb4b43659e8ac07edc463518cb36b /scipy_distutils/absoftfcompiler.py | |
parent | 1c5dfc8ed54322fb18a078879efb6f009757980f (diff) | |
download | numpy-144b7abfd345793c0806e3d8da9e75f2e2e89b5a.tar.gz |
Changed library include directory to append lib
Diffstat (limited to 'scipy_distutils/absoftfcompiler.py')
-rw-r--r-- | scipy_distutils/absoftfcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/absoftfcompiler.py b/scipy_distutils/absoftfcompiler.py index 5104ea077..f8d93cd28 100644 --- a/scipy_distutils/absoftfcompiler.py +++ b/scipy_distutils/absoftfcompiler.py @@ -37,7 +37,7 @@ class AbsoftFCompiler(FCompiler): opt = FCompiler.get_library_dirs(self) d = os.environ.get('ABSOFT') if d: - opt.append(d) + opt.append(os.path.join(d,'LIB')) return opt def get_libraries(self): |