[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 1/6] target/s390x: fix meson.build issue
From: |
Paolo Bonzini |
Subject: |
[PULL 1/6] target/s390x: fix meson.build issue |
Date: |
Fri, 21 Aug 2020 17:14:07 -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 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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'))
--
2.26.2
- [PULL 0/6] Meson build system fixes, Paolo Bonzini, 2020/08/21
- [PULL 3/6] configure: silence 'shift' error message in version_ge(), Paolo Bonzini, 2020/08/21
- [PULL 2/6] util/meson.build: fix fdmon-io_uring build, Paolo Bonzini, 2020/08/21
- [PULL 1/6] target/s390x: fix meson.build issue,
Paolo Bonzini <=
- [PULL 4/6] meson: convert pc-bios/keymaps/Makefile, Paolo Bonzini, 2020/08/21
- [PULL 5/6] meson: Fix --disable-tools --enable-system builds, Paolo Bonzini, 2020/08/21
- [PULL 6/6] keymaps: update, Paolo Bonzini, 2020/08/21
- Re: [PULL 0/6] Meson build system fixes, Peter Maydell, 2020/08/22
- Re: [PULL 0/6] Meson build system fixes, Peter Maydell, 2020/08/23