From 22570795dbaf4b32c593b58ea6b1ea8a2be26ef8 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 2 Jan 2021 17:01:49 +0000 Subject: [PATCH] build - fix if check for dev mode to cmp to string --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e513eb6cb..efe0041fd 100644 --- a/meson.build +++ b/meson.build @@ -13,7 +13,7 @@ config_h = configuration_data() e_version = ver.split('.') -if e_version[2] == 99 +if e_version[2] == '99' git_version = '0' git = find_program('git', required: false) if git.found() == true