diff options
author | David Cournapeau <cournape@gmail.com> | 2011-05-30 09:10:35 +0900 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2011-08-29 00:32:27 +0200 |
commit | 7847043c0003c18b617c8eb1c8cd5ffddcaabd21 (patch) | |
tree | da32745f377afc0a65b8e447c6b2ea43b4965430 /numpy/linalg | |
parent | d73761de71e9143ac244d6e8b7a5f9f08e80769c (diff) | |
download | numpy-7847043c0003c18b617c8eb1c8cd5ffddcaabd21.tar.gz |
ENH: update to last bento.
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/bscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/linalg/bscript b/numpy/linalg/bscript index 828e226e8..684e29101 100644 --- a/numpy/linalg/bscript +++ b/numpy/linalg/bscript @@ -8,7 +8,7 @@ from bento.commands.hooks \ def pbuild(context): bld = context.waf_context - def build_lapack_lite(bld, extension): + def build_lapack_lite(extension): kw = {} if bld.env.HAS_LAPACK: for s in ['python_xerbla.c', 'zlapack_lite.c', 'dlapack_lite.c', @@ -18,7 +18,7 @@ def pbuild(context): includes = ["../core/include", "../core/include/numpy", "../core", "../core/src/private"] - bld(features="c cshlib pyext", + bld(features="c cshlib pyext bento", target=extension.name, source=extension.sources, includes=includes, **kw) |