diff options
author | David Cournapeau <cournape@gmail.com> | 2011-08-18 14:11:43 +0200 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2011-08-29 00:32:27 +0200 |
commit | dfafdcd89e0051eb006b7db30bcac84ab812c922 (patch) | |
tree | b9a2c2258520c30f25bda50abbc6c133d0251306 /numpy/fft | |
parent | 0d8b63637b2503546ff374ccc8c1dc5ad69e29ca (diff) | |
download | numpy-dfafdcd89e0051eb006b7db30bcac84ab812c922.tar.gz |
REF: use new API for higher level builder reuse.
Diffstat (limited to 'numpy/fft')
-rw-r--r-- | numpy/fft/bscript | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/fft/bscript b/numpy/fft/bscript index b59f3b007..165ff145d 100644 --- a/numpy/fft/bscript +++ b/numpy/fft/bscript @@ -11,8 +11,5 @@ def build(context): def build(extension): includes = ["../core/include", "../core/include/numpy", "../core", "../core/src/private"] - bld(features="c cshlib pyext bento", - target=extension.name, - source=extension.sources, - includes=includes) + return context.default_builder(extension, includes=includes) context.register_builder("fftpack_lite", build) |