From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3Ydr-0004sI-5Y for qemu-devel@nongnu.org; Thu, 29 Oct 2009 13:18:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3Ydm-0004qL-LK for qemu-devel@nongnu.org; Thu, 29 Oct 2009 13:18:30 -0400 Received: from [199.232.76.173] (port=42899 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3Ydm-0004qB-FQ for qemu-devel@nongnu.org; Thu, 29 Oct 2009 13:18:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14696) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N3Ydl-00023T-E8 for qemu-devel@nongnu.org; Thu, 29 Oct 2009 13:18:26 -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 n9THINSL023730 for ; Thu, 29 Oct 2009 13:18:23 -0400 Received: from localhost.localdomain ([10.35.18.100]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n9THIKvH021774 for ; Thu, 29 Oct 2009 13:18:22 -0400 From: Uri Lublin Date: Thu, 29 Oct 2009 14:40:01 -0400 Message-Id: <1256841601-4964-1-git-send-email-uril@redhat.com> Subject: [Qemu-devel] [PATCH] Makefile: make qemu-img dependant 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 Since config-host.h is generated by the Makefile (1215c6e76), building (only) qemu-img fails: [user@f12-uri qemu]$ make distclean (or git clone qemu) [user@f12-uri qemu]$ ./configure ... [user@f12-uri qemu]$ make qemu-img GEN config-all-devices.mak GEN qemu-img-cmds.h CC qemu-img.o In file included from qemu-img.c:24: qemu-common.h:32:25: error: config-host.h: No such file or directory Signed-off-by: Uri Lublin --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 4d9908c..6f1bf87 100644 --- a/Makefile +++ b/Makefile @@ -200,7 +200,7 @@ libqemu_common.a: $(obj-y) ###################################################################### -qemu-img.o: qemu-img-cmds.h +qemu-img.o: config-host.h qemu-img-cmds.h qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) -- 1.6.5.1 Sent from my KVM Fedora-12-Beta VM.