elementary config: Fix to use ELEMENTARY_BASE_DIR for configure path

Summary:
"--with-elementary-base-dir" option was ignored by recent patches on elm_config.
The macro is being used in elm_theme. It should be syncronized.
The default value of the macro is ".elementary".

@fix

Test Plan: N/A

Reviewers: raster, cedric, jpeg

Reviewed By: jpeg

Differential Revision: https://phab.enlightenment.org/D5755
This commit is contained in:
Youngbok Shin 2018-01-22 21:01:27 +09:00 committed by Jean-Philippe Andre
parent ff1a0475c3
commit 32f8e0c726
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ _elm_config_user_dir_snprintf(char *dst,
"(:config:)/elementary");
else
file_obj = efl_vpath_manager_fetch(EFL_VPATH_MANAGER_CLASS,
"(:home:)/.elementary");
"(:home:)/"ELEMENTARY_BASE_DIR);
eina_strlcpy(dst, efl_vpath_file_result_get(file_obj), size);
efl_del(file_obj);