diff options
author | cookedm <cookedm@localhost> | 2006-07-29 14:14:08 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-07-29 14:14:08 +0000 |
commit | 3b49529e9114acd86afb0379218f8ab20c6d3955 (patch) | |
tree | ba2908f6c60d609ddd5c3f35adeffbb22d54ce6d | |
parent | 02926b0b6c030ec3cbf46eb37227d111c6da0ea8 (diff) | |
download | numpy-3b49529e9114acd86afb0379218f8ab20c6d3955.tar.gz |
Fix bugs in gnu and vast fcompilers (should fix #214)
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 2 | ||||
-rw-r--r-- | numpy/distutils/fcompiler/vast.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index e8a09d47b..cd272b885 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -86,7 +86,7 @@ class GnuFCompiler(FCompiler): def get_libgcc_dir(self): status, output = exec_command(self.compiler_f77 + - '-print-libgcc-file-name', + ['-print-libgcc-file-name'], use_tee=0) if not status: return os.path.dirname(output) diff --git a/numpy/distutils/fcompiler/vast.py b/numpy/distutils/fcompiler/vast.py index d2977b7e0..cf9d32b27 100644 --- a/numpy/distutils/fcompiler/vast.py +++ b/numpy/distutils/fcompiler/vast.py @@ -35,7 +35,7 @@ class VastFCompiler(GnuFCompiler): def get_flags_arch(self): vast_version = self.get_version() gnu = GnuFCompiler() - gnu.customize() + gnu.customize(None) self.version = gnu.get_version() opt = GnuFCompiler.get_flags_arch(self) self.version = vast_version |