diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-09 19:38:04 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-09 19:38:04 +0000 |
commit | bc201019940365b1f9266a569729ed334d857df6 (patch) | |
tree | 0d7a494c995de6395705ac078fc50e44f1d18dc9 /src/lib/ecore_imf | |
parent | e838106da5969e7dfe005417916c3f3ae276a16c (diff) |
ecore_imf: install module under MODULE_ARCH like the rest of EFL
SVN revision: 82478
Diffstat (limited to 'src/lib/ecore_imf')
-rw-r--r-- | src/lib/ecore_imf/ecore_imf_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ecore_imf/ecore_imf_module.c b/src/lib/ecore_imf/ecore_imf_module.c index 9df95a7130..fa9bd725a7 100644 --- a/src/lib/ecore_imf/ecore_imf_module.c +++ b/src/lib/ecore_imf/ecore_imf_module.c | |||
@@ -72,13 +72,13 @@ ecore_imf_module_init(void) | |||
72 | } | 72 | } |
73 | } | 73 | } |
74 | 74 | ||
75 | snprintf(buf, sizeof(buf), "%s/ecore_imf", eina_prefix_lib_get(pfx)); | 75 | snprintf(buf, sizeof(buf), "%s/ecore_imf/modules", eina_prefix_lib_get(pfx)); |
76 | 76 | ||
77 | module_list = eina_module_list_get(NULL, buf, 0, NULL, NULL); | 77 | module_list = eina_module_arch_list_get(NULL, buf, MODULE_ARCH); |
78 | homedir = eina_module_environment_path_get("HOME", "/.ecore_imf"); | 78 | homedir = eina_module_environment_path_get("HOME", "/.ecore_imf"); |
79 | if (homedir) | 79 | if (homedir) |
80 | { | 80 | { |
81 | module_list = eina_module_list_get(module_list, homedir, 0, NULL, NULL); | 81 | module_list = eina_module_arch_list_get(module_list, homedir, MODULE_ARCH); |
82 | free(homedir); | 82 | free(homedir); |
83 | } | 83 | } |
84 | eina_module_list_load(module_list); | 84 | eina_module_list_load(module_list); |