From 46a0667585e092634e7fe5fa967aedbea68e3410 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Wed, 14 Jan 2009 11:17:41 +0000 Subject: [PATCH] Add dependency annotations for the task that generates Python bindings --- bindings/python/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 794334f7d..7b3181b98 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -484,7 +484,8 @@ def build(bld): bindgen = bld.new_task_gen('command', source=source, target=target, command=argv, variables=dict(FEATURES=(','.join(features)))) - + bindgen.before = 'cxx' + bindgen.after = 'gen_everything_h_task' ## we build python bindings if either we have the tools to ## generate them or if the pregenerated source file is already