summary refs log tree commit diff stats
path: root/hw/core
diff options
context:
space:
mode:
authorPierrick Bouvier <pierrick.bouvier@linaro.org>2025-05-21 15:34:13 -0700
committerPaolo Bonzini <pbonzini@redhat.com>2025-05-26 17:31:06 +0200
commitd33717d7fca6a599aa991f771e3ea34b15978cee (patch)
tree84c70fe5a98635428f7e800164d09dd9b761aac5 /hw/core
parent7ca433244c6dde497bb36184f70b442b399fda3e (diff)
downloadfocaccia-qemu-d33717d7fca6a599aa991f771e3ea34b15978cee.tar.gz
focaccia-qemu-d33717d7fca6a599aa991f771e3ea34b15978cee.zip
meson: remove lib{system, user}_ss aliases
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Link: https://lore.kernel.org/r/20250521223414.248276-7-pierrick.bouvier@linaro.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/core')
-rw-r--r--hw/core/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/core/meson.build b/hw/core/meson.build
index 547de6527c..b5a545a0ed 100644
--- a/hw/core/meson.build
+++ b/hw/core/meson.build
@@ -26,7 +26,7 @@ system_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('stream.c'))
 system_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('sysbus-fdt.c'))
 system_ss.add(when: 'CONFIG_EIF', if_true: [files('eif.c'), zlib, libcbor, gnutls])
 
-libsystem_ss.add(files(
+system_ss.add(files(
   'cpu-system.c',
   'fw-path-provider.c',
   'gpio.c',
@@ -46,7 +46,7 @@ libsystem_ss.add(files(
   'vm-change-state-handler.c',
   'clock-vmstate.c',
 ))
-libuser_ss.add(files(
+user_ss.add(files(
   'cpu-user.c',
   'qdev-user.c',
 ))