1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

wafsamba: Actually install manual pages.

This commit is contained in:
Jelmer Vernooij 2010-05-31 01:35:43 +02:00
parent 38cbb60e97
commit f3f1745e27

View File

@ -295,6 +295,17 @@ def SAMBA_BINARY(bld, binname, source,
if subsystem_name is not None:
bld.TARGET_ALIAS(subsystem_name, binname)
if manpages is not None and bld.env.XSLTPROC is not None:
bld.env.MAN_XSL = 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
for m in manpages.split():
source = m + '.xml'
bld.SAMBA_GENERATOR(m,
source=source,
target=m,
rule='${XSLTPROC} -o ${TGT} ${MAN_XSL} ${SRC}'
)
bld.INSTALL_FILES('${MANDIR}/man%s' % m[-1], m, flat=True)
Build.BuildContext.SAMBA_BINARY = SAMBA_BINARY