diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:22:18 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:22:18 +0000 |
commit | 34028c1445f5b9124ac52e4fb5434240658d3df3 (patch) | |
tree | 0c4eb5028c457f33dc299c16f28ca2b952dc2cb0 | |
parent | 6ce9a33b042965a8c536f46b3494a6cae699ccfa (diff) | |
download | numpy-34028c1445f5b9124ac52e4fb5434240658d3df3.tar.gz |
Fix missing out filename.
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 264710138..ddcce9c06 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -268,6 +268,8 @@ def build_import_library(): raise ValueError("Unhandled arch %s" % arch) def _build_import_library_amd64(): + out_name = "libpython%d%d.a" % tuple(sys.version_info[:2]) + out_file = os.path.join(sys.prefix, 'libs', out_name) log.info('Building import library (arch=AMD64): "%s"' % (out_file)) def _build_import_library_x86(): |