From patchwork Wed Jun 13 22:29:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Rogers X-Patchwork-Id: 164778 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 688F5B702A for ; Thu, 14 Jun 2012 10:49:10 +1000 (EST) Received: from localhost ([::1]:51496 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SeyFH-0004iy-80 for incoming@patchwork.ozlabs.org; Wed, 13 Jun 2012 20:49:07 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SeyFB-0004ih-38 for qemu-devel@nongnu.org; Wed, 13 Jun 2012 20:49:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SeyF9-0007h7-CA for qemu-devel@nongnu.org; Wed, 13 Jun 2012 20:49:00 -0400 Received: from 63-248-41-43.static.orml012.digis.net ([63.248.41.43]:34982 helo=brogers1.provo.novell.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SeyF9-0007gl-2K for qemu-devel@nongnu.org; Wed, 13 Jun 2012 20:48:59 -0400 Received: by brogers1.provo.novell.com (Postfix, from userid 1000) id 4709030C39C; Wed, 13 Jun 2012 16:29:19 -0600 (MDT) From: Bruce Rogers To: qemu-devel@nongnu.org Date: Wed, 13 Jun 2012 16:29:17 -0600 Message-Id: <1339626557-18016-1-git-send-email-brogers@suse.com> X-Mailer: git-send-email 1.7.7 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 63.248.41.43 Cc: Bruce Rogers Subject: [Qemu-devel] [PATCH] build: install qmp-commands.txt X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org File is targeted for install, but is never installed. Signed-off-by: Bruce Rogers --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 32550cb..74f5c5f 100644 --- a/Makefile +++ b/Makefile @@ -272,6 +272,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)" ifdef CONFIG_POSIX $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"