projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b22f83d
)
meson: fix type of "relocatable" option
author
Paolo Bonzini
<pbonzini@redhat.com>
Wed, 13 Dec 2023 10:30:09 +0000
(11:30 +0100)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Sun, 31 Dec 2023 08:11:27 +0000
(09:11 +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
patch
|
blob
|
history
diff --git
a/meson_options.txt
b/meson_options.txt
index c9baeda6395634c3478a3c2a3a8c8f57fbe0b592..0a99a059ec8c4c7a48f37d158de3822af5e57dbb 100644
(file)
--- 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')