From af0dfcce70a2a435fe37701450d050cf53b0c702 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 5 Feb 2026 13:32:27 +0100 Subject: [PATCH] build: fixup release/debug mistake --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 67d61a62..473803ec 100644 --- a/meson.build +++ b/meson.build @@ -575,7 +575,7 @@ endif main_source = files('src/main.c') # Generate git version header if in development -if get_option('buildtype') == 'release' or get_option('buildtype') == 'debugoptimized' +if get_option('buildtype') == 'debug' or get_option('buildtype') == 'debugoptimized' git_branch = run_command('git', 'rev-parse', '--symbolic-full-name', '--abbrev-ref', 'HEAD', check: false).stdout().strip() git_revision = run_command('git', 'log', '--pretty=format:%h', '-n', '1',