diff options
author | David Cournapeau <cournape@gmail.com> | 2011-03-16 01:26:34 -0400 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2011-08-29 00:32:23 +0200 |
commit | fd59c8328035c22533fb6d27c632aa651b76e7ae (patch) | |
tree | 94c3306865a161b0a25a7fc63155156ceee36d6c /bscript | |
parent | 69af3d08e8a8cbaf35277c4b718237bf3f1a89c1 (diff) | |
download | numpy-fd59c8328035c22533fb6d27c632aa651b76e7ae.tar.gz |
BUG: only handle python files in in-place customization.
Diffstat (limited to 'bscript')
-rw-r--r-- | bscript | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -104,12 +104,7 @@ version = "" if "-i" in sys.argv: for g in bld.groups: for task_gen in g: - if hasattr(task_gen, "link_task"): - ltask = task_gen.link_task - for output in ltask.outputs: - if output.is_child_of(bld.bldnode): - shutil.copy(output.abspath(), output.path_from(bld.bldnode)) - elif "gen_pymodule" in task_gen.features: + if "gen_pymodule" in task_gen.features: if len(task_gen.tasks) > 0: task = task_gen.tasks[0] for output in task.outputs: |