summaryrefslogtreecommitdiff
path: root/docs-xml/wscript_build
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2020-03-10 18:18:10 +0100
committerKarolin Seeger <kseeger@samba.org>2020-08-25 11:27:16 +0000
commitdebb98b55a2385829f0333cf7f9f16f108f08cfe (patch)
tree77b15c159dab3991722d96e2c6c52385e1c441bb /docs-xml/wscript_build
parent492213aff41e0ad0794f1b1fce0120d8991825c2 (diff)
downloadsamba-debb98b55a2385829f0333cf7f9f16f108f08cfe.tar.gz
docs: Add missing winexe manpage
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14318 Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Aug 20 12:55:23 UTC 2020 on sn-devel-184 (cherry picked from commit a9b6a8378e5db19d5d5ecd42f08ec3abd49ad5b8)
Diffstat (limited to 'docs-xml/wscript_build')
-rw-r--r--docs-xml/wscript_build5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs-xml/wscript_build b/docs-xml/wscript_build
index 21158e11fe7..b2378518817 100644
--- a/docs-xml/wscript_build
+++ b/docs-xml/wscript_build
@@ -64,6 +64,8 @@ pam_winbind_manpages = '''
krb5_locator_manpages = 'manpages/winbind_krb5_locator.8'
krb5_localauth_manpages = 'manpages/winbind_krb5_localauth.8'
+winexe_manpages = 'manpages/winexe.1'
+
vfs_module_manpages = ['vfs_acl_tdb',
'vfs_acl_xattr',
'vfs_aio_fork',
@@ -168,6 +170,9 @@ if ('XSLTPROC_MANPAGES' in bld.env and bld.env['XSLTPROC_MANPAGES']):
if bld.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
bld.SAMBAMANPAGES(krb5_localauth_manpages)
+ if conf.env.build_winexe == True:
+ bld.SAMBAMANPAGES(winexe_manpages)
+
for manpage in vfs_module_manpages:
if bld.SAMBA3_IS_ENABLED_MODULE(manpage):
bld.SAMBAMANPAGES('manpages/%s.8' % manpage)