summaryrefslogtreecommitdiff
path: root/scipy_distutils/absoftfcompiler.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2004-03-11 20:20:03 +0000
committerTravis Oliphant <oliphant@enthought.com>2004-03-11 20:20:03 +0000
commit8d935d1126580300b0340a5ef65b4ec6378a50d9 (patch)
tree24324335b5d5a344f21ddf35b2a8392632cd9a68 /scipy_distutils/absoftfcompiler.py
parentcf8d1e6eedf7171969771dcec1218a8258d1731f (diff)
downloadnumpy-8d935d1126580300b0340a5ef65b4ec6378a50d9.tar.gz
Fixed dependency libraries on absoft compiler.
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 15dfa9ef6..eea051162 100644
--- a/scipy_distutils/absoftfcompiler.py
+++ b/scipy_distutils/absoftfcompiler.py
@@ -42,7 +42,7 @@ class AbsoftFCompiler(FCompiler):
def get_libraries(self):
opt = FCompiler.get_libraries(self)
- opt.extend(['fio','f77math','f90math'])
+ opt.extend(['fio','f90math','fmath'])
if os.name =='nt':
opt.append('COMDLG32')
return opt