diff options
author | Marcel Hollerbach <marcel@osg.samsung.com> | 2018-02-12 18:37:26 +0100 |
---|---|---|
committer | Marcel Hollerbach <marcel@osg.samsung.com> | 2018-02-17 21:17:58 +0100 |
commit | 86b4af41c373a5b7d7f47770c05db1a787158e0d (patch) | |
tree | 978dd351085581dfb134c0ece00c991d9b50cbfc /src/lib/elementary/elm_module.c | |
parent | 014df3d71051a2bf01a1fb93e293a0abbbe715df (diff) | |
download | efl-86b4af41c373a5b7d7f47770c05db1a787158e0d.tar.gz |
elementary: use new bs static lib
Diffstat (limited to 'src/lib/elementary/elm_module.c')
-rw-r--r-- | src/lib/elementary/elm_module.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/elementary/elm_module.c b/src/lib/elementary/elm_module.c index 447c207060..2d38327c7c 100644 --- a/src/lib/elementary/elm_module.c +++ b/src/lib/elementary/elm_module.c @@ -3,7 +3,7 @@ #endif #include <Elementary.h> - +#include "../../static_libs/buildsystem/buildsystem.h" #include "elm_priv.h" /* what are moodules in elementary for? for modularising behavior and features @@ -135,8 +135,7 @@ _elm_module_load(Elm_Module *m) #ifdef NEED_RUN_IN_TREE if (getenv("EFL_RUN_IN_TREE")) { - snprintf(buf, sizeof(buf), - ELM_TOP_BUILD_DIR "/src/modules/elementary/%s/.libs/module"EFL_SHARED_EXTENSION, m->name); + bs_mod_get(buf, sizeof(buf), "elementary", m->name); } else #endif |