diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-26 12:13:24 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-26 17:58:07 +0900 |
commit | d453579ddfabe690e8cb4d375fbe6fdc89a36e2c (patch) | |
tree | 27288eb6eb6a9349b9a5b8f0740b3bc41f9da75e /src/lib/elementary/elm_module.c | |
parent | ebff5e8639851ab9d80fa6ff36f20f08952c015e (diff) |
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
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/elm_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_module.c b/src/lib/elementary/elm_module.c index 92557b1d50..75cf3dd487 100644 --- a/src/lib/elementary/elm_module.c +++ b/src/lib/elementary/elm_module.c | |||
@@ -136,7 +136,7 @@ _elm_module_load(Elm_Module *m) | |||
136 | if (getenv("ELM_RUN_IN_TREE")) | 136 | if (getenv("ELM_RUN_IN_TREE")) |
137 | { | 137 | { |
138 | snprintf(buf, sizeof(buf), | 138 | snprintf(buf, sizeof(buf), |
139 | ELM_TOP_BUILD_DIR "/src/modules/%s/.libs/module"EFL_SHARED_EXTENSION, m->name); | 139 | ELM_TOP_BUILD_DIR "/src/modules/elementary/%s/.libs/module"EFL_SHARED_EXTENSION, m->name); |
140 | } | 140 | } |
141 | else | 141 | else |
142 | #endif | 142 | #endif |