From 187c207d9b2c9e6d1aa73b58802c16a15c44c8cc Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Tue, 21 Feb 2012 14:44:40 +0000 Subject: [PATCH] Makefile: Add dependency to fix linux-user-only build Make qemu-bridge-helper explicitly depend on $(GENERATED_HEADERS) so that it doesn't fail to build when we configured for linux-user targets only. (Build breakage introduced in commit 7b93fad.) Signed-off-by: Peter Maydell Signed-off-by: Anthony Liguori --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e66e885d1b..c67493e184 100644 --- a/Makefile +++ b/Makefile @@ -159,6 +159,7 @@ qemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y) $(block-obj-y) qemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y) $(block-obj-y) qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o +qemu-bridge-helper.o: $(GENERATED_HEADERS) fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y) fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap -- 2.11.4.GIT