diff options
author | David Cournapeau <cournape@gmail.com> | 2012-08-11 00:23:41 +0100 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2012-08-11 00:23:41 +0100 |
commit | 63cd8f3cc751771fd27636009b8c0341a2beff45 (patch) | |
tree | 1a950589aff110f1c829a00c8b4fc0e433f44327 | |
parent | fcdbcac4fa300a81e687fe93a956b54e7a6f7db5 (diff) | |
download | numpy-63cd8f3cc751771fd27636009b8c0341a2beff45.tar.gz |
BUG: fix bento build.
-rw-r--r-- | numpy/core/bscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/bscript b/numpy/core/bscript index fcbfcb3e0..1ded8eff3 100644 --- a/numpy/core/bscript +++ b/numpy/core/bscript @@ -501,7 +501,7 @@ def pre_build(context): use="npymath") context.register_builder("umath", build_ufunc) - context.tweak_extension("scalarmath", use="npymath") + context.tweak_extension("scalarmath", use="npymath", includes=["src/private"]) context.tweak_extension("multiarray_tests", use="npymath", includes=["src/private"]) context.tweak_extension("umath_tests", use="npymath", includes=["src/private"]) |