summaryrefslogtreecommitdiff
path: root/source4/heimdal_build
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-02-26 07:35:22 +0100
committerAndrew Bartlett <abartlet@samba.org>2014-04-02 09:03:45 +0200
commit06b48b028c329f765b57a996d6004a5542d6f142 (patch)
tree621133536297dfdfd142bde822880a12fd9883ff /source4/heimdal_build
parent8a1f67b53b11a11bb472c1d0b0010cd24b3106df (diff)
downloadsamba-06b48b028c329f765b57a996d6004a5542d6f142.tar.gz
s4:heimdal_build: explicitly pass allow_warnings=True to CURRENT_CFLAGS()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/heimdal_build')
-rw-r--r--source4/heimdal_build/wscript_build4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/heimdal_build/wscript_build b/source4/heimdal_build/wscript_build
index ae7fbec3216..abda84803d3 100644
--- a/source4/heimdal_build/wscript_build
+++ b/source4/heimdal_build/wscript_build
@@ -126,7 +126,7 @@ def HEIMDAL_ASN1(name, source,
t = bld(features = 'cc',
source = cfile,
target = name,
- samba_cflags = CURRENT_CFLAGS(bld, name, ''),
+ samba_cflags = CURRENT_CFLAGS(bld, name, '', allow_warnings=True),
depends_on = '',
samba_deps = to_list('roken replace'),
samba_includes = includes + ["/usr/include/heimdal"],
@@ -280,7 +280,7 @@ def HEIMDAL_SUBSYSTEM(modname, source,
features = 'cc',
source = source,
target = modname,
- samba_cflags = CURRENT_CFLAGS(bld, modname, cflags),
+ samba_cflags = CURRENT_CFLAGS(bld, modname, cflags, allow_warnings=True),
depends_on = '',
samba_deps = to_list(deps),
samba_includes = includes,