From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cU8gF-0002rB-1S for qemu-devel@nongnu.org; Thu, 19 Jan 2017 04:06:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cU8gB-0000BJ-2h for qemu-devel@nongnu.org; Thu, 19 Jan 2017 04:06:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59668) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cU8gA-0000Af-U1 for qemu-devel@nongnu.org; Thu, 19 Jan 2017 04:06:47 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0F1E063716 for ; Thu, 19 Jan 2017 09:06:47 +0000 (UTC) From: Markus Armbruster Date: Thu, 19 Jan 2017 10:06:44 +0100 Message-Id: <1484816804-12598-1-git-send-email-armbru@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] build-sys: Minor qapi doc generation target cleanups List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Move makeinfo flags from MAKEINFO to MAKEINFOFLAGS. Fix the call of quiet-command for target qemu-ga-qapi.texi. Both messed up in commit 56e8bdd. Cc: Marc-Andr=C3=A9 Lureau Signed-off-by: Markus Armbruster --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9f8968d..f35c422 100644 --- a/Makefile +++ b/Makefile @@ -542,8 +542,8 @@ ui/console-gl.o: $(SRC_PATH)/ui/console-gl.c \ ui/shader/texture-blit-vert.h ui/shader/texture-blit-frag.h =20 # documentation -MAKEINFO=3Dmakeinfo -D 'VERSION $(VERSION)' -MAKEINFOFLAGS=3D--no-split --number-sections +MAKEINFO=3Dmakeinfo +MAKEINFOFLAGS=3D--no-split --number-sections -D 'VERSION $(VERSION)' TEXIFLAG=3D$(if $(V),,--quiet) --command=3D'@set VERSION $(VERSION)' =20 %.html: %.texi @@ -573,7 +573,7 @@ qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx $(SR= C_PATH)/scripts/hxtool $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","= $@") =20 qemu-qapi.texi: $(qapi-modules) $(qapi-py) - $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@= ,"GEN" "$@") + $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@= ,"GEN","$@") =20 qemu-ga-qapi.texi: $(SRC_PATH)/qga/qapi-schema.json $(qapi-py) $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@= ,"GEN","$@") --=20 2.7.4