1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-31 01:48:16 +03:00

heimdal_build: consistently pass extra_cflags=cflags to HEIMDAL_CFLAGS()

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2021-11-30 17:03:06 +01:00
parent ccfefe2890
commit 75e1000d28

View File

@ -212,11 +212,11 @@ def HEIMDAL_GENERATOR(name, rule, source='', target='',
name=name)
def HEIMDAL_LIBRARY(libname, source, deps, version_script, includes=''):
def HEIMDAL_LIBRARY(libname, source, deps, version_script, includes='', cflags=''):
'''define a Heimdal library'''
cflags, cflags_end, allow_warnings = HEIMDAL_CFLAGS(use_hostcc=False,
extra_cflags=[])
extra_cflags=cflags)
source = heimdal_paths(source)
orig_vscript_map = heimdal_path(version_script, absolute=False)
bld.SAMBA_LIBRARY(libname, source,
@ -280,7 +280,8 @@ def HEIMDAL_BINARY(binname, source,
install_path=None):
'''define a Samba binary'''
cflags, cflags_end, allow_warnings = HEIMDAL_CFLAGS(use_hostcc=use_hostcc)
cflags, cflags_end, allow_warnings = HEIMDAL_CFLAGS(use_hostcc=use_hostcc,
extra_cflags=cflags)
source = heimdal_paths(source)
obj_target = binname + '.heimdal.objlist'