From: Uri Lublin Date: Thu, 29 Oct 2009 18:40:01 +0000 (-0400) Subject: Makefile: make qemu-img dependant on config-host.h X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~9824 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fafce63d992d34468eca1aea7ae63b12a5209ae4;p=sdk%2Femulator%2Fqemu.git Makefile: make qemu-img dependant on config-host.h 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 Signed-off-by: Anthony Liguori --- diff --git a/Makefile b/Makefile index c783aa4..4af3f9c 100644 --- a/Makefile +++ b/Makefile @@ -209,7 +209,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)