From ffbc5737b3dffd2dcbbd010e60df2e751d366450 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Sun, 20 Mar 2011 12:18:15 +0000 Subject: [PATCH] Bug 1075 - Python examples fail when static built is enabled --- bindings/python/wscript | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index a708c9ea9..e929e2292 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -704,10 +704,7 @@ def build(bld): bindgen.after = 'gen_everything_h_task' bindgen.name = "pybindgen-command" - if bld.env['ENABLE_STATIC_NS3']: - features = 'cxx cstaticlib pyext' - else: - features = 'cxx cshlib pyext' + features = 'cxx cshlib pyext' if env['ENABLE_PYTHON_PCH']: features += ' pch' pymod = bld.new_task_gen(features=features)