From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Marchi Subject: [PATCH lttng-ust] Fix: generation of man pages with multiple refnames Date: Thu, 6 Feb 2020 10:06:45 -0500 Message-ID: <20200206150645.6654-1-simon.marchi@efficios.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail.efficios.com (mail.efficios.com [167.114.26.124]) by lists.lttng.org (Postfix) with ESMTPS id 48D1xV0Dv6z10MJ for ; Thu, 6 Feb 2020 10:07:10 -0500 (EST) List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: lttng-dev-bounces@lists.lttng.org Sender: "lttng-dev" To: lttng-dev@lists.lttng.org Cc: Simon Marchi List-Id: lttng-dev@lists.lttng.org In this proposed patch [1], we're trying to make a man page with two command names in the NAME section, like this: tracef, vtracef - LTTng-UST printf(3)-like interface Doing so causes the intermediary XML (what asciidoc outputs) to contain this: tracef, vtracef LTTng-UST printf(3)-like interface The refname is used by the docbook XSL to determine the output filename. This therefore results in an output file named `tracef,_vtracef.3`, which is not desirable. The problem is in the asciidoc pass, more specifically the part of asciidoc.conf removed by this patch. Is is there to override the `source`, `version` and `manual` fields, but it also inadvertently affects the refname generation. Instead of playing with the asciidoc output template, this patch sets the same `source`, `version` and `manual` attributes on the asciidoc command line. With the present patch applied, the XML output contains: tracef vtracef LTTng-UST printf(3)-like interface The xmlto pass (docbook XML -> man page) then generates two files, `tracef.3` and `vtracef.3`, where `vtracef.3` simply sources `tracef.3` (which is what we want). [1] https://lists.lttng.org/pipermail/lttng-dev/2020-February/029524.html Signed-off-by: Simon Marchi Signed-off-by: Philippe Proulx --- doc/man/Makefile.am | 6 ++++-- doc/man/asciidoc.conf | 20 -------------------- 2 files changed, 4 insertions(+), 22 deletions(-) diff --git a/doc/man/Makefile.am b/doc/man/Makefile.am index f562bfd13a66..14aa4be7c82d 100644 --- a/doc/man/Makefile.am +++ b/doc/man/Makefile.am @@ -58,8 +58,10 @@ xmlto_verbose_0 = @echo " XMLTO " $@; # Tools to execute: ADOC = $(asciidoc_verbose)$(ASCIIDOC) -f $(ASCIIDOC_CONF) -d manpage \ - -a lttng_version="$(PACKAGE_VERSION)" \ - -a lttng_ust_register_timeout="@LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS@" + -a lttng_ust_register_timeout="@LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS@" \ + -a mansource="LTTng" \ + -a manmanual="LTTng Manual" \ + -a manversion="$(PACKAGE_VERSION)" ADOC_DOCBOOK = $(ADOC) -b docbook XTO = $(xmlto_verbose)$(XMLTO) -m $(XSL_FILE) man diff --git a/doc/man/asciidoc.conf b/doc/man/asciidoc.conf index e3c8016dc3ff..b3c8709d5ead 100644 --- a/doc/man/asciidoc.conf +++ b/doc/man/asciidoc.conf @@ -57,23 +57,3 @@ ifdef::backend-docbook[] NOT endif::backend-docbook[] endif::doctype-manpage[] - -# configure XML man page header -ifdef::doctype-manpage[] -ifdef::backend-docbook[] -[header] -template::[header-declarations] - - -{mantitle} -{manvolnum} -LTTng -{lttng_version} -LTTng Manual - - - {manname} - {manpurpose} - -endif::backend-docbook[] -endif::doctype-manpage[] -- 2.25.0