projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6f83a7
)
target/s390x: fix meson.build issue
author
Paolo Bonzini
<pbonzini@redhat.com>
Fri, 21 Aug 2020 15:52:37 +0000
(11:52 -0400)
committer
Paolo 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
patch
|
blob
|
history
diff --git
a/target/s390x/meson.build
b/target/s390x/meson.build
index d2a33159031ffd10512bc765570f3b80f4e7f23d..c42eadb7d245439967082c75fd63337a468c7d23 100644
(file)
--- 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'))