aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2020-08-21 11:52:37 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2020-08-21 11:55:13 -0400
commit73173177ac672925dd6c6bf6bd00386fb753fc4b (patch)
treeed0a09bb197810bdbc0612e89e9192357ff12d90
parentd6f83a72a7db94a3ede9f5cc4fb39f9c8e89f954 (diff)
target/s390x: fix meson.build issue
files() is needed to avoid ../meson.build:977:2: ERROR: File tcg-stub.c does not exist. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--target/s390x/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/meson.build b/target/s390x/meson.build
index d2a3315903..c42eadb7d2 100644
--- a/target/s390x/meson.build
+++ b/target/s390x/meson.build
@@ -21,7 +21,7 @@ s390x_ss.add(when: 'CONFIG_TCG', if_true: files(
'vec_helper.c',
'vec_int_helper.c',
'vec_string_helper.c',
-), if_false: 'tcg-stub.c')
+), if_false: files('tcg-stub.c'))
s390x_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c'))