From 3af457ddd333319f0d5277dbba403aaddead232e Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Sun, 13 Mar 2011 18:15:28 +0000 Subject: [PATCH] Fix: The compat. ns3.py module is not needed when --bindings-type=both --- bindings/python/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 151282229..561d8b74d 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -756,5 +756,5 @@ def build(bld): - if env['ENABLE_PYTHON_BINDINGS'] and env['BINDINGS_TYPE'] in ('modular', 'both'): + if env['ENABLE_PYTHON_BINDINGS'] and env['BINDINGS_TYPE'] in ('modular',): gen = gen_ns3_compat_pymod_task(bld, bld.path.find_or_declare("ns3.py").bldpath(bld.env))