From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33399) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMHQC-0006dX-Ab for qemu-devel@nongnu.org; Wed, 18 Sep 2013 09:04:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VMHQ6-0004Qt-A7 for qemu-devel@nongnu.org; Wed, 18 Sep 2013 09:03:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMHQ6-0004Qo-2A for qemu-devel@nongnu.org; Wed, 18 Sep 2013 09:03:50 -0400 From: Luiz Capitulino Date: Wed, 18 Sep 2013 09:03:38 -0400 Message-Id: <1379509422-29115-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1379509422-29115-1-git-send-email-lcapitulino@redhat.com> References: <1379509422-29115-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 2/6] QMP: fix qmp-commands.txt generation path List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: qemu-devel@nongnu.org This file should be generated in the BUILD_DIR, as all other docs. Signed-off-by: Luiz Capitulino Reviewed-by: Eric Blake --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 362fe3e..aca548d 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ LIBS+=-lz $(LIBS_TOOLS) HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) ifdef BUILD_DOCS -DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt +DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qmp-commands.txt ifdef CONFIG_VIRTFS DOCS+=fsdev/virtfs-proxy-helper.1 endif @@ -304,7 +304,7 @@ endif install-doc: $(DOCS) $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)" $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)" - $(INSTALL_DATA) QMP/qmp-commands.txt "$(DESTDIR)$(qemu_docdir)" + $(INSTALL_DATA) qmp-commands.txt "$(DESTDIR)$(qemu_docdir)" ifdef CONFIG_POSIX $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1" @@ -398,7 +398,7 @@ qemu-options.texi: $(SRC_PATH)/qemu-options.hx qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") -QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx +qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@") qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx -- 1.8.1.4