raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=22570795dbaf4b32c593b58ea6b1ea8a2be26ef8
commit 22570795dbaf4b32c593b58ea6b1ea8a2be26ef8 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Sat Jan 2 17:01:49 2021 +0000 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 --