diff options
author | David Mulder <dmulder@suse.com> | 2020-09-10 11:50:53 -0600 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2020-09-11 03:43:40 +0000 |
commit | 6f5b0fef59850477ad30c2b5063b431725716056 (patch) | |
tree | 11b1175b1ddac064436e5efbdfdcf78f4dc5ac04 /ctdb | |
parent | e60df214998afc145ca482cab184691b3ddc3bb2 (diff) | |
download | samba-6f5b0fef59850477ad30c2b5063b431725716056.tar.gz |
ctdb: Prevent man page duplication
The new waf detects a duplicate instance of
ctdb_mutex_ceph_rados_helper.7.xml, which is due
to manpages_extra being a pointer to
manpages_misc, therefore each call to build()
added duplicate entries to the manpages_misc
global entry.
Signed-off-by: David Mulder <dmulder@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'ctdb')
-rw-r--r-- | ctdb/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/wscript b/ctdb/wscript index 35c8c0622fc..b883990c55e 100644 --- a/ctdb/wscript +++ b/ctdb/wscript @@ -705,7 +705,7 @@ def build(bld): (sed_expr1, sed_expr2, sed_expr3, sed_expr4, sed_expr5, sed_expr6, sed_expr7, sed_expr8) - manpages_extra = manpages_misc + manpages_extra = list(manpages_misc) if bld.env.etcd_reclock: manpages_extra += manpages_etcd if bld.env.HAVE_LIBRADOS: |