From 4a7142ec04de94ae91119a39bd9e48adeab7368b Mon Sep 17 00:00:00 2001 From: "Galen.Liu" Date: Mon, 4 Feb 2013 07:43:01 +0100 Subject: tevent: fix --disable-python cause configure fails (bug #8718) When we disable python, it will cause build fail! so, the patch will fix it. Reviewed-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- lib/tevent/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tevent/wscript b/lib/tevent/wscript index c62c3de317..71b1f61673 100755 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -109,7 +109,7 @@ def build(bld): pc_files='tevent.pc', private_library=private_library) - if not bld.CONFIG_SET('USING_SYSTEM_PYTEVENT'): + if not bld.CONFIG_SET('USING_SYSTEM_PYTEVENT') and not bld.env.disable_python: bld.SAMBA_PYTHON('pytevent', 'pytevent.c', deps='tevent', -- cgit