From 5787b9bf36e0aea67f6033c491e5083f90aa757f Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Sun, 27 Mar 2011 22:50:00 +0100 Subject: [PATCH] Modular bindings: add missing dep on the modulegen_customizations.py file, when found --- src/wscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wscript b/src/wscript index e07188f5a..c0c5895ae 100644 --- a/src/wscript +++ b/src/wscript @@ -192,6 +192,9 @@ def ns3_python_bindings(bld): source = [bld.srcnode.find_resource('bindings/python/ns3modulegen-modular.py').relpath_gen(bld.path), "bindings/modulegen__%s.py" % apidefs] + if bindings_dir.find_resource("modulegen_customizations.py") is not None: + source.append("bindings/modulegen_customizations.py") + # the local customization file may or not exist if bld.path.find_resource("bindings/modulegen_local.py"): source.append("bindings/modulegen_local.py")