]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
target/s390x: fix meson.build issue
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 21 Aug 2020 15:52:37 +0000 (11:52 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 21 Aug 2020 15:55:13 +0000 (11:55 -0400)
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>
target/s390x/meson.build

index d2a33159031ffd10512bc765570f3b80f4e7f23d..c42eadb7d245439967082c75fd63337a468c7d23 100644 (file)
@@ -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'))