aboutsummaryrefslogtreecommitdiff
path: root/hw/block/Makefile.objs
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2019-02-07 18:37:38 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2019-03-07 21:45:53 +0100
commita02c0edb35662de38d400f42b68845540669ca3d (patch)
tree78a103d7d33109e699d8cd557e971cdd1315f3a8 /hw/block/Makefile.objs
parentd6e9c470fc91f75db1785f17a9d3567d5a27953d (diff)
downloadqemu-a02c0edb35662de38d400f42b68845540669ca3d.zip
qemu-a02c0edb35662de38d400f42b68845540669ca3d.tar.gz
qemu-a02c0edb35662de38d400f42b68845540669ca3d.tar.bz2
block: fix recursion in hw/block/dataplane
There are Xen files in hw/block/dataplane that should be compiled even if virtio-blk is disabled. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/block/Makefile.objs')
-rw-r--r--hw/block/Makefile.objs3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/block/Makefile.objs b/hw/block/Makefile.objs
index e206b8e..f5f643f 100644
--- a/hw/block/Makefile.objs
+++ b/hw/block/Makefile.objs
@@ -12,5 +12,6 @@ common-obj-$(CONFIG_NVME_PCI) += nvme.o
obj-$(CONFIG_SH4) += tc58128.o
obj-$(CONFIG_VIRTIO_BLK) += virtio-blk.o
-obj-$(CONFIG_VIRTIO_BLK) += dataplane/
obj-$(CONFIG_VHOST_USER_BLK) += vhost-user-blk.o
+
+obj-y += dataplane/