diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-16 18:32:41 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-16 18:32:41 +0000 |
commit | 0c502d1fbbe52bebe164963dccb41b9cd18ae038 (patch) | |
tree | 58bbbfc3afd254b632848fe887e8442315df80a6 /numpy/distutils/fcompiler | |
parent | 65af92bcd4a6f2fb82e99c27770a28dda69488fc (diff) | |
download | numpy-0c502d1fbbe52bebe164963dccb41b9cd18ae038.tar.gz |
Fix get_target.
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index 7dcc350e4..8e86dc387 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -283,7 +283,7 @@ class Gnu95FCompiler(GnuFCompiler): if not status: m = TARGET_R.search(output) if m: - print m.group(1) + return m.group(1) return "" if __name__ == '__main__': |