summary refs log tree commit diff stats
path: root/hw/i386/meson.build
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2023-08-31 11:14:18 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2023-10-18 10:01:01 +0200
commitadfa939e735688dba1098d91e8c71aef6d5ccd6b (patch)
treedc78d151ba8fc5ff6022488a9b91406404fa44ec /hw/i386/meson.build
parentae22ae651515045ea06eac9abc55dacbfd616bd4 (diff)
downloadfocaccia-qemu-adfa939e735688dba1098d91e8c71aef6d5ccd6b.tar.gz
focaccia-qemu-adfa939e735688dba1098d91e8c71aef6d5ccd6b.zip
hw/xen: cleanup sourcesets
xen_ss is added unconditionally to arm_ss and i386_ss (the only
targets that can have CONFIG_XEN enabled) and its contents are gated by
CONFIG_XEN; xen_specific_ss has no condition for its constituent files
but is gated on CONFIG_XEN when its added to specific_ss.

So xen_ss is a duplicate of xen_specific_ss, though defined in a
different way.  Merge the two by eliminating xen_ss.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/i386/meson.build')
-rw-r--r--hw/i386/meson.build1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/i386/meson.build b/hw/i386/meson.build
index ff879069c9..369c6bf823 100644
--- a/hw/i386/meson.build
+++ b/hw/i386/meson.build
@@ -32,6 +32,5 @@ subdir('kvm')
 subdir('xen')
 
 i386_ss.add_all(xenpv_ss)
-i386_ss.add_all(xen_ss)
 
 hw_arch += {'i386': i386_ss}