[Numpy-svn] r4788 - trunk/numpy/distutils/fcompiler

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Feb 12 06:49:16 EST 2008


Author: pearu
Date: 2008-02-12 05:49:11 -0600 (Tue, 12 Feb 2008)
New Revision: 4788

Modified:
   trunk/numpy/distutils/fcompiler/hpux.py
Log:
Fix type. Sorry about that.

Modified: trunk/numpy/distutils/fcompiler/hpux.py
===================================================================
--- trunk/numpy/distutils/fcompiler/hpux.py	2008-02-12 11:37:06 UTC (rev 4787)
+++ trunk/numpy/distutils/fcompiler/hpux.py	2008-02-12 11:49:11 UTC (rev 4788)
@@ -26,9 +26,9 @@
         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.




More information about the Numpy-svn mailing list