summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/ccan/wscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ccan/wscript b/lib/ccan/wscript
index 81039d006e..1c5f337ee4 100644
--- a/lib/ccan/wscript
+++ b/lib/ccan/wscript
@@ -145,6 +145,7 @@ def configure(conf):
def ccan_module(bld, name, deps=''):
bld.SAMBA_SUBSYSTEM('ccan-%s' % name,
source=bld.path.ant_glob('%s/*.c' % name),
+ allow_warnings=True,
deps=deps)
bld.env.CCAN_MODS += 'ccan-%s ' % name
@@ -188,5 +189,6 @@ def build(bld):
bld.SAMBA_LIBRARY('ccan',
source='',
deps=bld.env.CCAN_MODS,
+ allow_warnings=True,
private_library=True,
grouping_library=True)