From 50311c760685335160742efa01bc64584265ffd5 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 6 Mar 2015 11:55:49 +0100 Subject: [PATCH] wafsamba: Add install argument to SAMBA_PYTHON This allows building Python modules that are only used for testing. Signed-off-by: Petr Viktorin Reviewed-By: Jelmer Vernooij Reviewed-by: Andreas Schneider --- buildtools/wafsamba/samba_python.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildtools/wafsamba/samba_python.py b/buildtools/wafsamba/samba_python.py index 1ec2f7b7fcc..a371b434a78 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -34,6 +34,7 @@ def SAMBA_PYTHON(bld, name, init_function_sentinel=None, local_include=True, vars=None, + install=True, enabled=True): '''build a python extension for Samba''' @@ -64,6 +65,7 @@ def SAMBA_PYTHON(bld, name, install_path='${PYTHONARCHDIR}', allow_undefined_symbols=True, allow_warnings=True, + install=install, enabled=enabled) Build.BuildContext.SAMBA_PYTHON = SAMBA_PYTHON -- 2.47.3