elm/config: always use default profile with EFL_RUN_IN_TREE

Summary:
if this env var is set, we're probably running unit tests or something
and we should ignore ELM_PROFILE

Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9701
This commit is contained in:
Mike Blumenkrantz 2019-08-23 13:37:55 -04:00
parent 2cd4d67109
commit 42d10b84be
1 changed files with 3 additions and 2 deletions

View File

@ -1477,6 +1477,7 @@ _profile_fetch_from_conf(void)
Eet_File *ef = NULL;
int len = 0, i;
if (_use_build_config) goto end;
// if env var - use profile without question
s = _getenv_once("ELM_PROFILE");
if (s)
@ -1497,7 +1498,7 @@ _profile_fetch_from_conf(void)
}
}
for (i = 0; i < 2 && !_use_build_config; i++)
for (i = 0; i < 2; i++)
{
// user profile
if (i == 0)
@ -1527,7 +1528,7 @@ _profile_fetch_from_conf(void)
eet_close(ef);
}
}
end:
_elm_profile = strdup("default");
}