From d9ce876ea97d59d66c8d2892b43b7cc8392470a0 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sat, 9 Jun 2012 15:37:20 +0930 Subject: ccan: import err module.from ccan revision 5add556a1cb64b49a664506aa76216d885b22c97 This allows us to avoid err.h in failtest. Signed-off-by: Rusty Russell --- lib/ccan/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ccan/wscript') diff --git a/lib/ccan/wscript b/lib/ccan/wscript index 8a2b3e79b7..24c9550121 100644 --- a/lib/ccan/wscript +++ b/lib/ccan/wscript @@ -122,14 +122,14 @@ def configure(conf): def build(bld): - for ccan_dir in ["hash", "htable", "ilog", "likely", "list", "read_write_all", "str", "tally", "time"]: + for ccan_dir in ["err", "hash", "htable", "ilog", "likely", "list", "read_write_all", "str", "tally", "time"]: bld.SAMBA_SUBSYSTEM('ccan-%s' % ccan_dir, source=bld.path.ant_glob('%s/*.c' % ccan_dir)) if bld.env.DEVELOPER_MODE: bld.SAMBA_LIBRARY('ccan-failtest', source=bld.path.ant_glob('failtest/*.c'), - deps='execinfo ccan ccan-failtest ccan-htable ccan-list ccan-read_write_all ccan-time', + deps='execinfo ccan ccan-err ccan-htable ccan-list ccan-read_write_all ccan-time', private_library=True) bld.SAMBA_LIBRARY('ccan', -- cgit