diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-09 16:46:58 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-09 16:46:58 +0000 |
commit | f0a7a2a75170043bb3c44e511cc3558dc585293c (patch) | |
tree | 336dc691ac38c20bcfa178001566905c254f356a /src/lib/ecore_imf | |
parent | cde6032c2eab72c8e694a9c59ee241bfe7042526 (diff) |
efl: move ecore/immodules to ecore_imf
Move both the source tree and the install directory.
SVN revision: 82474
Diffstat (limited to 'src/lib/ecore_imf')
-rw-r--r-- | src/lib/ecore_imf/ecore_imf_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore_imf/ecore_imf_module.c b/src/lib/ecore_imf/ecore_imf_module.c index bf8cf6b731..9df95a7130 100644 --- a/src/lib/ecore_imf/ecore_imf_module.c +++ b/src/lib/ecore_imf/ecore_imf_module.c | |||
@@ -40,7 +40,7 @@ ecore_imf_module_init(void) | |||
40 | if (getenv("EFL_RUN_IN_TREE")) | 40 | if (getenv("EFL_RUN_IN_TREE")) |
41 | { | 41 | { |
42 | struct stat st; | 42 | struct stat st; |
43 | snprintf(buf, sizeof(buf), "%s/src/modules/ecore/immodules", | 43 | snprintf(buf, sizeof(buf), "%s/src/modules/ecore_imf", |
44 | PACKAGE_BUILD_DIR); | 44 | PACKAGE_BUILD_DIR); |
45 | if (stat(buf, &st) == 0) | 45 | if (stat(buf, &st) == 0) |
46 | { | 46 | { |
@@ -60,7 +60,7 @@ ecore_imf_module_init(void) | |||
60 | for (itr = built_modules; *itr != NULL; itr++) | 60 | for (itr = built_modules; *itr != NULL; itr++) |
61 | { | 61 | { |
62 | snprintf(buf, sizeof(buf), | 62 | snprintf(buf, sizeof(buf), |
63 | "%s/src/modules/ecore/immodules/%s/.libs", | 63 | "%s/src/modules/ecore_imf/%s/.libs", |
64 | PACKAGE_BUILD_DIR, *itr); | 64 | PACKAGE_BUILD_DIR, *itr); |
65 | module_list = eina_module_list_get(module_list, buf, | 65 | module_list = eina_module_list_get(module_list, buf, |
66 | EINA_FALSE, NULL, NULL); | 66 | EINA_FALSE, NULL, NULL); |
@@ -72,10 +72,10 @@ ecore_imf_module_init(void) | |||
72 | } | 72 | } |
73 | } | 73 | } |
74 | 74 | ||
75 | snprintf(buf, sizeof(buf), "%s/ecore/immodules", eina_prefix_lib_get(pfx)); | 75 | snprintf(buf, sizeof(buf), "%s/ecore_imf", eina_prefix_lib_get(pfx)); |
76 | 76 | ||
77 | module_list = eina_module_list_get(NULL, buf, 0, NULL, NULL); | 77 | module_list = eina_module_list_get(NULL, buf, 0, NULL, NULL); |
78 | homedir = eina_module_environment_path_get("HOME", "/.ecore/immodules"); | 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_list_get(module_list, homedir, 0, NULL, NULL); |