diff options
author | Stefan Weil | 2014-02-27 21:28:03 +0100 |
---|---|---|
committer | Peter Maydell | 2014-03-04 14:02:23 +0100 |
commit | 57f45b6207a65d96ee4913f33f1ec46cd32a083a (patch) | |
tree | 7b6174ca0c12e1f94bc58c58fb8727db865607bd /Makefile | |
parent | modules: Fix building with --enable-modules (diff) | |
download | qemu-57f45b6207a65d96ee4913f33f1ec46cd32a083a.tar.gz qemu-57f45b6207a65d96ee4913f33f1ec46cd32a083a.tar.xz qemu-57f45b6207a65d96ee4913f33f1ec46cd32a083a.zip |
Makefile: Add missing dependency for system emulation (fix build)
Comment from Makefile.objs:
The system emulation needs this dependency (which was missing in Makefile),
otherwise builds without tools (or massive parallel builds) fail.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -159,6 +159,7 @@ qemu-options.def: $(SRC_PATH)/qemu-options.hx SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES)) +$(SOFTMMU_SUBDIR_RULES): $(block-obj-y) $(SOFTMMU_SUBDIR_RULES): config-all-devices.mak subdir-%: |