diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2008-02-12 11:49:11 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2008-02-12 11:49:11 +0000 |
commit | ba07a502ccc27ad152e53ef86cc1429f296439c0 (patch) | |
tree | 0f3dc89a7300f276215ecc3ea25bd1be2fa35f49 /numpy/distutils/fcompiler/hpux.py | |
parent | 56d156240e0d7d65c443c01fff931aaa27b3cca4 (diff) | |
download | numpy-ba07a502ccc27ad152e53ef86cc1429f296439c0.tar.gz |
Fix type. Sorry about that.
Diffstat (limited to 'numpy/distutils/fcompiler/hpux.py')
-rw-r--r-- | numpy/distutils/fcompiler/hpux.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/hpux.py b/numpy/distutils/fcompiler/hpux.py index baaba1b4d..aa9e2e2ca 100644 --- a/numpy/distutils/fcompiler/hpux.py +++ b/numpy/distutils/fcompiler/hpux.py @@ -26,9 +26,9 @@ class HPUXFCompiler(FCompiler): return ['-O3'] def get_libraries(self): return ['m'] - def get_library_dirs(self): - opt = ['/usr/lib/hpux64'] - return opt + def get_library_dirs(self): + opt = ['/usr/lib/hpux64'] + return opt def get_version(self, force=0, ok_status=[256,0,1]): # XXX status==256 may indicate 'unrecognized option' or # 'no input file'. So, version_cmd needs more work. |