diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2012-02-21 14:44:40 +0000 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-22 09:02:52 -0600 |
| commit | 187c207d9b2c9e6d1aa73b58802c16a15c44c8cc (patch) | |
| tree | e6b43a78c96e000f72f52ccdc2c0cdc078c8a0e2 | |
| parent | a0abe474d587499a1553372c1692811f81fd3eda (diff) | |
| download | focaccia-qemu-187c207d9b2c9e6d1aa73b58802c16a15c44c8cc.tar.gz focaccia-qemu-187c207d9b2c9e6d1aa73b58802c16a15c44c8cc.zip | |
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 <peter.maydell@linaro.org> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
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 |