From fd2cdaf7ac220aa94e42dab18295fe1540bcd94d Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Wed, 9 Jul 2008 17:31:37 +0100 Subject: [PATCH] Redirect the stderr of pybindgen to a log file (ns3modulegen.log). --- bindings/python/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/wscript b/bindings/python/wscript index 503de4823..3d600b1b8 100644 --- a/bindings/python/wscript +++ b/bindings/python/wscript @@ -316,9 +316,9 @@ def build(bld): if env['ENABLE_PYTHON_BINDINGS']: bindgen = bld.create_obj('command-output') bindgen.name = 'pybindgen' - bindgen.command = env['PYTHON'] bindgen.command_is_external = True + bindgen.stderr = 'ns3modulegen.log' bindgen.argv = [ bindgen.input_file("ns3modulegen.py"), bindgen.output_file("ns3module.cc"),