elm: Fix module load with ELM_RUN_IN_TREE

Somehow I was seeing a ton of errors with "prefs_iface" not found in
make check. This code could not have worked since the merge of
elementary in EFL tree...

@fix
This commit is contained in:
Jean-Philippe Andre 2017-09-26 12:13:24 +09:00
parent ebff5e8639
commit d453579ddf
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ _elm_module_load(Elm_Module *m)
if (getenv("ELM_RUN_IN_TREE"))
{
snprintf(buf, sizeof(buf),
ELM_TOP_BUILD_DIR "/src/modules/%s/.libs/module"EFL_SHARED_EXTENSION, m->name);
ELM_TOP_BUILD_DIR "/src/modules/elementary/%s/.libs/module"EFL_SHARED_EXTENSION, m->name);
}
else
#endif