From 0cc663db91f06bdcc3acbbc7ecc770e142054ee7 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Thu, 1 Sep 2011 17:28:10 +0100 Subject: [PATCH] Re-enable the 'ns3' compatility python module, previously accidentally disabled --- bindings/python/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 19b45c086..3dc3e33fe 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -511,7 +511,7 @@ def build(bld): return - if env['ENABLE_PYTHON_BINDINGS'] and env['BINDINGS_TYPE'] in ('modular',): + if env['ENABLE_PYTHON_BINDINGS']: task = gen_ns3_compat_pymod_task(env) task.set_outputs(bld.path.find_or_declare("ns3.py")) task.dep_vars = ['PYTHON_MODULES_BUILT']