mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-02-11 19:39:26 -07:00
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>
This commit is contained in:
parent
b22f83d8df
commit
2bbc487510
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue