summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/bscript5
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):