From 06b48b028c329f765b57a996d6004a5542d6f142 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 26 Feb 2014 07:35:22 +0100 Subject: [PATCH] s4:heimdal_build: explicitly pass allow_warnings=True to CURRENT_CFLAGS() Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- source4/heimdal_build/wscript_build | 4 ++-- 1 file 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, -- 2.11.4.GIT