From 13f437ed5abd18d76343268e4b1396e8a032c6c2 Mon Sep 17 00:00:00 2001 From: pancake Date: Mon, 30 May 2022 16:22:08 +0200 Subject: [PATCH] Use `true` instead of `'true'` in meson_options --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 7529e4f23d..25a5028936 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -45,6 +45,6 @@ option('use_dylink', type: 'boolean', value: true) option('debugger', type: 'boolean', value: true) option('want_ptrace_wrap', type: 'boolean', value: true) option('nogpl', type: 'boolean', value: false) -option('use_webui', type: 'boolean', value: 'true', description: 'install different WebUIs for radare2') +option('use_webui', type: 'boolean', value: true, description: 'install different WebUIs for radare2') option('enable_tests', type: 'boolean', value: true, description: 'Build unit tests in test/unit') option('enable_r2r', type: 'boolean', value: true, description: 'Build r2r executable for regression ')