summaryrefslogtreecommitdiff
path: root/scipy_distutils/absoftfcompiler.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2004-03-04 23:48:08 +0000
committerTravis Oliphant <oliphant@enthought.com>2004-03-04 23:48:08 +0000
commit144b7abfd345793c0806e3d8da9e75f2e2e89b5a (patch)
treec26cc0326bacb4b43659e8ac07edc463518cb36b /scipy_distutils/absoftfcompiler.py
parent1c5dfc8ed54322fb18a078879efb6f009757980f (diff)
downloadnumpy-144b7abfd345793c0806e3d8da9e75f2e2e89b5a.tar.gz
Changed library include directory to append lib
Diffstat (limited to 'scipy_distutils/absoftfcompiler.py')
-rw-r--r--scipy_distutils/absoftfcompiler.py2
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):