[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/21] meson: fix type of "relocatable" option
From: |
Paolo Bonzini |
Subject: |
[PATCH 01/21] meson: fix type of "relocatable" option |
Date: |
Thu, 21 Dec 2023 18:19:38 +0100 |
Since the option is of boolean type, the default value should be a boolean
rather than a string.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
meson_options.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson_options.txt b/meson_options.txt
index c9baeda6395..0a99a059ec8 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -101,7 +101,7 @@ option('cfi_debug', type: 'boolean', value: false,
description: 'Verbose errors in case of CFI violation')
option('multiprocess', type: 'feature', value: 'auto',
description: 'Out of process device emulation support')
-option('relocatable', type : 'boolean', value : 'true',
+option('relocatable', type : 'boolean', value : true,
description: 'toggle relocatable install')
option('vfio_user_server', type: 'feature', value: 'disabled',
description: 'vfio-user server support')
--
2.43.0
- [PATCH 00/21] Build system cleanups for QEMU 9.0, Paolo Bonzini, 2023/12/21
- [PATCH 01/21] meson: fix type of "relocatable" option,
Paolo Bonzini <=
- [PATCH 03/21] meson: use version_compare() to compare version, Paolo Bonzini, 2023/12/21
- [PATCH 04/21] Makefile: clean qemu-iotests output, Paolo Bonzini, 2023/12/21
- [PATCH 05/21] configure: remove unnecessary subshell, Paolo Bonzini, 2023/12/21
- [PATCH 06/21] configure: unify again the case arms in probe_target_compiler, Paolo Bonzini, 2023/12/21
- [PATCH 07/21] meson: always probe u2f and canokey if the option is enabled, Paolo Bonzini, 2023/12/21
- [PATCH 02/21] meson: remove unused variable, Paolo Bonzini, 2023/12/21
- [PATCH 08/21] meson: remove OS definitions from config_targetos, Paolo Bonzini, 2023/12/21
- [PATCH 09/21] meson: remove CONFIG_POSIX and CONFIG_WIN32 from config_targetos, Paolo Bonzini, 2023/12/21