summaryrefslogtreecommitdiff
path: root/numpy/linalg/bscript
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/linalg/bscript')
-rw-r--r--numpy/linalg/bscript4
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)