From 2606c99ed30215180be3711bbab68e219cc764b6 Mon Sep 17 00:00:00 2001 From: Uri Simchoni Date: Sun, 19 Nov 2017 11:32:16 +0000 Subject: [PATCH] build: allow adding cflags to end of python module build command Signed-off-by: Uri Simchoni Reviewed-by: Andrew Bartlett --- 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 f97439c945b..cb99fe9f4cc 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -109,6 +109,7 @@ def SAMBA_PYTHON(bld, name, public_deps='', realname=None, cflags='', + cflags_end=None, includes='', init_function_sentinel=None, local_include=True, @@ -154,6 +155,7 @@ def SAMBA_PYTHON(bld, name, public_deps=public_deps, includes=includes, cflags=cflags, + cflags_end=cflags_end, local_include=local_include, vars=vars, realname=realname,