raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=96d920b707276aa63074ca4d7bccf4b8a7a62a55
commit 96d920b707276aa63074ca4d7bccf4b8a7a62a55 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Jan 16 10:45:40 2020 +0000 eina statgen - move to using api not env var as we need new efl anyway --- src/bin/e_main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 79da00891..8a5fe15b7 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -306,14 +306,12 @@ main(int argc, char **argv) if (getenv("E_START_MTRACK")) e_util_env_set("MTRACK", NULL); TS("Eina Init"); - s = getenv("EINA_STATGEN"); - if (!s) e_util_env_set("EINA_STATGEN", "1"); if (!eina_init()) { e_error_message_show(_("Enlightenment cannot initialize Eina!\n")); _e_main_shutdown(-1); } - if (!s) e_util_env_set("EINA_STATGEN", NULL); + eina_file_statgen_enable(); _e_main_shutdown_push(eina_shutdown); --
