aboutsummaryrefslogtreecommitdiff
path: root/target/cris
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-10-04 11:06:27 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2023-10-07 19:03:07 +0200
commit01c85e60a4d0675f0ad203fe1fe119381e7ad15b (patch)
tree06aae0a2a421890b9b906b396fbbe4a25dbf2118 /target/cris
parent21d2140dd8a0e44cd24a640f0316d02e7927f603 (diff)
downloadqemu-01c85e60a4d0675f0ad203fe1fe119381e7ad15b.zip
qemu-01c85e60a4d0675f0ad203fe1fe119381e7ad15b.tar.gz
qemu-01c85e60a4d0675f0ad203fe1fe119381e7ad15b.tar.bz2
meson: Rename target_softmmu_arch -> target_system_arch
Finish the convertion started with commit de6cd7599b ("meson: Replace softmmu_ss -> system_ss"). If the $target_type is 'system', then use the target_system_arch[] source set :) Mechanical change doing: $ sed -i -e s/target_softmmu_arch/target_system_arch/g \ $(git grep -l target_softmmu_arch) Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231004090629.37473-13-philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/cris')
-rw-r--r--target/cris/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/cris/meson.build b/target/cris/meson.build
index 07dc3a5..bbfcdf7 100644
--- a/target/cris/meson.build
+++ b/target/cris/meson.build
@@ -14,4 +14,4 @@ cris_system_ss.add(files(
))
target_arch += {'cris': cris_ss}
-target_softmmu_arch += {'cris': cris_system_ss}
+target_system_arch += {'cris': cris_system_ss}