summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2022-06-20 14:34:05 +1200
committerAndreas Schneider <asn@cryptomilk.org>2022-06-22 15:50:33 +0000
commitf3de9f6c2e004caab3c410b70c9a7424d5dc8627 (patch)
treed366350191d40f76396a66009d48d550245bcc91 /buildtools
parentf68374aac54b2e5c315acbab3e189755842e7c4e (diff)
downloadsamba-f3de9f6c2e004caab3c410b70c9a7424d5dc8627.tar.gz
build: Allow &pathconfig XML entities to be used in all manpages, not just smb.conf
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15101 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/wafsamba.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index 79fe8b5e575..063f9d2ed75 100644
--- a/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py
@@ -1180,10 +1180,10 @@ def SAMBAMANPAGES(bld, manpages, extra_source=None):
source = [m + '.xml']
if extra_source is not None:
source = [source, extra_source]
- # ${SRC[1]} and ${SRC[2]} are not referenced in the
+ # ${SRC[1]}, ${SRC[2]} and ${SRC[3]} are not referenced in the
# SAMBA_GENERATOR but trigger the dependency calculation so
# ensures that manpages are rebuilt when these change.
- source += ['build/DTD/samba.entities', 'build/DTD/samba.build.version']
+ source += ['build/DTD/samba.build.pathconfig', 'build/DTD/samba.entities', 'build/DTD/samba.build.version']
bld.SAMBA_GENERATOR(m,
source=source,
target=m,