summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorUri Simchoni <uri@samba.org>2017-11-19 11:32:16 +0000
committerAndrew Bartlett <abartlet@samba.org>2017-11-22 10:20:20 +0100
commit2606c99ed30215180be3711bbab68e219cc764b6 (patch)
tree044b3f6d6e6b847e4fb0c63516c7b6c1a1c51a91 /buildtools
parent98813a605d51ce42ecee0d8c5c2de82ef1566aed (diff)
downloadsamba-2606c99ed30215180be3711bbab68e219cc764b6.tar.gz
build: allow adding cflags to end of python module build command
Signed-off-by: Uri Simchoni <uri@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_python.py2
1 files changed, 2 insertions, 0 deletions
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,