From fec1b3302d87939abd3abd3d951093fbdf2f6e18 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Tue, 7 Oct 2025 10:33:50 -0300 Subject: [PATCH] meson: Remove redudant get_option('buildtype') --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1ea94b5374..ae84cc90de 100644 --- a/meson.build +++ b/meson.build @@ -330,7 +330,7 @@ endif # DEBUG SYMBOLS debugging_format = 'disabled' -if get_option('buildtype') == 'debug' or get_option('buildtype') == 'debugoptimized' +if buildtype == 'debug' or buildtype == 'debugoptimized' if not platform_windows # DWARF symbols for GCC and LLDB on Unix debugging_format = 'native'