diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-12-13 11:30:09 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-12-31 09:11:27 +0100 |
commit | 2bbc4875108d5bf1ba59d6c4174234c0d7998f65 (patch) | |
tree | 45efffc4708f92cff2586fbf8fc7ec9f69c309f5 /meson_options.txt | |
parent | b22f83d8df481800ce43d1915a98c127a9de2258 (diff) |
meson: fix type of "relocatable" option
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>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index c9baeda639..0a99a059ec 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') |