summary refs log tree commit diff stats
path: root/target
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2023-09-29 11:40:03 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2023-12-31 09:11:28 +0100
commitcfc1a889e509ffeba6e44cca8ff626751bc4219e (patch)
treebe88a62804cdac81dec5e6ad95db70e2286a762c /target
parent0d66549cf5b76bde9870af0d09a46d6d6c306e53 (diff)
downloadfocaccia-qemu-cfc1a889e509ffeba6e44cca8ff626751bc4219e.tar.gz
focaccia-qemu-cfc1a889e509ffeba6e44cca8ff626751bc4219e.zip
meson: rename config_all
config_all now lists only accelerators, rename it to indicate its actual
content.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target')
-rw-r--r--target/arm/meson.build2
-rw-r--r--target/mips/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/target/arm/meson.build b/target/arm/meson.build
index d6c3902e67..46b5a21eb3 100644
--- a/target/arm/meson.build
+++ b/target/arm/meson.build
@@ -28,7 +28,7 @@ arm_system_ss.add(files(
 
 subdir('hvf')
 
-if 'CONFIG_TCG' in config_all
+if 'CONFIG_TCG' in config_all_accel
    subdir('tcg')
 else
     arm_ss.add(files('tcg-stubs.c'))
diff --git a/target/mips/meson.build b/target/mips/meson.build
index e57ef24ecf..a26d1e1f79 100644
--- a/target/mips/meson.build
+++ b/target/mips/meson.build
@@ -12,7 +12,7 @@ if have_system
   subdir('sysemu')
 endif
 
-if 'CONFIG_TCG' in config_all
+if 'CONFIG_TCG' in config_all_accel
   subdir('tcg')
 endif