diff options
author | David Cournapeau <cournape@gmail.com> | 2011-04-10 12:11:05 +0900 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2011-08-29 00:32:27 +0200 |
commit | d73761de71e9143ac244d6e8b7a5f9f08e80769c (patch) | |
tree | 2e19f55a721c3802e639994a4672f4c76eb2002b | |
parent | a654ec7ac3a458fa0a6435a27f1f961fe1d9f06b (diff) | |
download | numpy-d73761de71e9143ac244d6e8b7a5f9f08e80769c.tar.gz |
ENH: remove unneeded waf recursive context path magic.
-rw-r--r-- | numpy/core/bscript | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/core/bscript b/numpy/core/bscript index f9defb079..a4170a259 100644 --- a/numpy/core/bscript +++ b/numpy/core/bscript @@ -254,10 +254,6 @@ def check_complex(conf): @pre_configure() def configure(context): conf = context.waf_context - # FIXME: bento command's context should have API so that subclasses can - # customize recurse behavior - old_path = conf.path - conf.path = conf.path.make_node(context.local_node.path_from(context.top_node)) try: conf.check_header("endian.h") @@ -293,7 +289,6 @@ def configure(context): conf.env.INCLUDES = [".", "include", "include/numpy"] # FIXME: Should be handled in bento context - conf.path = old_path conf.store() class CTemplateTask(waflib.Task.Task): |