diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-09 15:37:20 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-09 15:41:18 +0930 |
commit | d9ce876ea97d59d66c8d2892b43b7cc8392470a0 (patch) | |
tree | 9b75e61a0b9ab13ee598369d4e59abcba5d4e29b /lib/ccan/wscript | |
parent | 8a338c65a1824ae8a93bef7bc8fac65684c285c8 (diff) | |
download | samba-d9ce876ea97d59d66c8d2892b43b7cc8392470a0.tar.gz samba-d9ce876ea97d59d66c8d2892b43b7cc8392470a0.tar.bz2 samba-d9ce876ea97d59d66c8d2892b43b7cc8392470a0.zip |
ccan: import err module.from ccan revision 5add556a1cb64b49a664506aa76216d885b22c97
This allows us to avoid err.h in failtest.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/ccan/wscript')
-rw-r--r-- | lib/ccan/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
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', |