edje: no case is defined for Preprocessor Flag "EDJE_EXTRA_MODULE_NAME". So removing it to avoid printf warning.

Reviewers: raster, cedric

Subscribers: rajeshps, jpeg

Differential Revision: https://phab.enlightenment.org/D5298

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
Prince Kumar Dubey 2017-10-13 12:04:35 -07:00 committed by Cedric Bail
parent 3935607483
commit 72a807a51c
1 changed files with 1 additions and 5 deletions

View File

@ -165,11 +165,7 @@ edje_available_modules_get(void)
EINA_ITERATOR_FOREACH(it, info)
{
eina_strbuf_append_printf(buf, "%s/%s/" EDJE_MODULE_NAME, info->path, MODULE_ARCH
#ifdef EDJE_EXTRA_MODULE_NAME
, info->path + info->name_start
#endif
);
eina_strbuf_append_printf(buf, "%s/%s/" EDJE_MODULE_NAME, info->path, MODULE_ARCH);
if (ecore_file_exists(eina_strbuf_string_get(buf)))
result = eina_list_append(result, eina_stringshare_add(info->path + info->name_start));