1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

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>
This commit is contained in:
Uri Simchoni 2017-11-19 11:32:16 +00:00 committed by Andrew Bartlett
parent 98813a605d
commit 2606c99ed3

View File

@ -109,6 +109,7 @@ def SAMBA_PYTHON(bld, name,
public_deps='', public_deps='',
realname=None, realname=None,
cflags='', cflags='',
cflags_end=None,
includes='', includes='',
init_function_sentinel=None, init_function_sentinel=None,
local_include=True, local_include=True,
@ -154,6 +155,7 @@ def SAMBA_PYTHON(bld, name,
public_deps=public_deps, public_deps=public_deps,
includes=includes, includes=includes,
cflags=cflags, cflags=cflags,
cflags_end=cflags_end,
local_include=local_include, local_include=local_include,
vars=vars, vars=vars,
realname=realname, realname=realname,