diff options
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. |