From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3a1D-0006aO-TP for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:46:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3a19-0006Xf-CA for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:46:43 -0400 Received: from [199.232.76.173] (port=40903 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3a19-0006XV-1m for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:46:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58506) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N3a18-0000U8-H9 for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:46:38 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9TIkbcS019546 for ; Thu, 29 Oct 2009 14:46:37 -0400 Received: from localhost.localdomain (dhcp-lab-127.englab.brq.redhat.com [10.34.33.127]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n9TIkacC017013 for ; Thu, 29 Oct 2009 14:46:36 -0400 From: Paolo Bonzini Date: Thu, 29 Oct 2009 19:46:35 +0100 Message-Id: <1256841995-24178-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH] Makefile: make qemu-io dependent on config-host.h List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is needed also for qemu-io, but not for qemu-nbd. Signed-off-by: Paolo Bonzini --- Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index f98b70c..67089dd 100644 --- a/Makefile +++ b/Makefile @@ -205,6 +205,8 @@ qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) +qemu-io.o: config-host.h + qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx -- 1.6.2.5