From: Markus Armbruster <armbru@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v6 13/17] build-sys: use --no-split for info
Date: Thu, 22 Dec 2016 22:05:38 +0100 [thread overview]
Message-ID: <87oa03r7x9.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20161206141343.28044-14-marcandre.lureau@redhat.com> ("Marc-André Lureau"'s message of "Tue, 6 Dec 2016 17:13:39 +0300")
Marc-André Lureau <marcandre.lureau@redhat.com> writes:
> Splitting the info files doesn't bring much benefits these days.
> This fixes also untracked generated info files from git ignore.
>
> Let's use MAKEINFOFLAGS for common flags, --number-sections is already
> the default anyway, so adding it doesn't change the info output.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> Makefile | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 361773634d..0bc470d974 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -529,17 +529,17 @@ ui/console-gl.o: $(SRC_PATH)/ui/console-gl.c \
>
> # documentation
> MAKEINFO=makeinfo
> -MAKEINFOFLAGS=--no-headers --no-split --number-sections
> +MAKEINFOFLAGS=--no-split --number-sections
> TEXIFLAG=$(if $(V),,--quiet)
> %.dvi: %.texi
> $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"GEN","$@")
>
> %.html: %.texi
> - $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
> - "GEN","$@")
> + $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
> + --html $< -o $@,"GEN","$@")
>
> %.info: %.texi
> - $(call quiet-command,$(MAKEINFO) $< -o $@,"GEN","$@")
> + $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
>
> %.pdf: %.texi
> $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"GEN","$@")
Reviewed-by: Markus Armbruster <armbru@redhat.com>
next prev parent reply other threads:[~2016-12-22 21:05 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-06 14:13 [Qemu-devel] [PATCH v6 00/17] qapi doc generation (whole version, squashed) Marc-André Lureau
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 01/17] qapi: improve device_add schema Marc-André Lureau
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 02/17] qapi: improve TransactionAction doc Marc-André Lureau
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 03/17] qga/schema: improve guest-set-vcpus Returns: section Marc-André Lureau
2016-12-21 10:13 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 04/17] qapi: add some sections in docs Marc-André Lureau
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 05/17] docs: add master qapi texi files Marc-André Lureau
2016-12-21 16:49 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 06/17] qapi: rework qapi Exception Marc-André Lureau
2016-12-22 10:03 ` Markus Armbruster
2017-01-05 18:26 ` Marc-André Lureau
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 07/17] qapi: use a QAPIParseError in parser Marc-André Lureau
2016-12-22 10:16 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 08/17] qapi: add qapi2texi script Marc-André Lureau
2016-12-22 19:29 ` Markus Armbruster
2017-01-09 14:09 ` Marc-André Lureau
2017-01-11 12:29 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 09/17] texi2pod: learn quotation, deftp and deftypefn Marc-André Lureau
2016-12-22 20:02 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 10/17] json: reorder documentation body Marc-André Lureau
2016-12-22 20:48 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 11/17] (SQUASHED) move doc to schema Marc-André Lureau
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 12/17] docs: add qemu logo to pdf Marc-André Lureau
2016-12-22 20:59 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 13/17] build-sys: use --no-split for info Marc-André Lureau
2016-12-22 21:05 ` Markus Armbruster [this message]
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 14/17] build-sys: remove dvi doc generation Marc-André Lureau
2016-12-22 21:09 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 15/17] build-sys: use a generic TEXI2MAN rule Marc-André Lureau
2016-12-22 21:15 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 16/17] build-sys: add txt documentation rules Marc-André Lureau
2016-12-22 21:16 ` Markus Armbruster
2016-12-06 14:13 ` [Qemu-devel] [PATCH v6 17/17] build-sys: add qapi doc generation targets Marc-André Lureau
2016-12-22 21:22 ` Markus Armbruster
2017-01-05 18:19 ` Marc-André Lureau
2016-12-23 9:48 ` [Qemu-devel] [PATCH v6 00/17] qapi doc generation (whole version, squashed) Markus Armbruster
2017-01-09 10:46 ` Marc-André Lureau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87oa03r7x9.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.