Skip to content

Commit

Permalink
target/s390x: fix meson.build issue
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
bonzini committed Aug 21, 2020
1 parent d6f83a7 commit 7317317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target/s390x/meson.build
Expand Up @@ -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'))

Expand Down

0 comments on commit 7317317

Please sign in to comment.