meson: fix type of "relocatable" option
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 13 Dec 2023 10:30:09 +0000 (11:30 +0100)
committerPaolo 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

index c9baeda6395634c3478a3c2a3a8c8f57fbe0b592..0a99a059ec8c4c7a48f37d158de3822af5e57dbb 100644 (file)
@@ -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')