summaryrefslogtreecommitdiff
path: root/scipy_distutils/laheyfcompiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'scipy_distutils/laheyfcompiler.py')
-rw-r--r--scipy_distutils/laheyfcompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy_distutils/laheyfcompiler.py b/scipy_distutils/laheyfcompiler.py
index 228eb9206..e097e66d0 100644
--- a/scipy_distutils/laheyfcompiler.py
+++ b/scipy_distutils/laheyfcompiler.py
@@ -27,13 +27,13 @@ class LaheyFCompiler(FCompiler):
def get_flags_debug(self):
return ['-g','--chk','--chkglobal']
def get_library_dirs(self):
- opt = FCompiler.get_library_dirs(self)
+ opt = []
d = os.environ.get('LAHEY')
if d:
opt.append(os.path.join(d,'lib'))
return opt
def get_libraries(self):
- opt = FCompiler.get_libraries(self)
+ opt = []
opt.extend(['fj9f6', 'fj9i6', 'fj9ipp', 'fj9e6'])
return opt