jpeg pushed a commit to branch efl-1.20. http://git.enlightenment.org/core/efl.git/commit/?id=d199516dbffb4ae45da4a6dbb6f5f17efc25745d
commit d199516dbffb4ae45da4a6dbb6f5f17efc25745d Author: Jean-Philippe Andre <jp.an...@samsung.com> Date: Tue Sep 26 12:13:24 2017 +0900 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 --- src/lib/elementary/elm_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_module.c b/src/lib/elementary/elm_module.c index 03f70dc032..745930cb29 100644 --- a/src/lib/elementary/elm_module.c +++ b/src/lib/elementary/elm_module.c @@ -135,7 +135,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 --