diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-02-26 07:35:22 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-04-02 09:03:46 +0200 |
commit | a939027c6ee69f02e83c21ce419407373000d206 (patch) | |
tree | f34b995bc99c0b530887c6a2a25786ec2d82011d | |
parent | 06b48b028c329f765b57a996d6004a5542d6f142 (diff) | |
download | samba-a939027c6ee69f02e83c21ce419407373000d206.tar.gz samba-a939027c6ee69f02e83c21ce419407373000d206.tar.xz samba-a939027c6ee69f02e83c21ce419407373000d206.zip |
lib/ccan: explicitly use allow_warnings=True
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | lib/ccan/wscript | 2 |
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) |