From c304510ca53626d068c1672beb35d29988a41029 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Thu, 18 Oct 2018 14:30:37 +0200 Subject: [PATCH] meson: we accidently looked at the wrong elementary config spot we read and wrote the config into the wrong subdirectory, thus values did not match - HOWEVER something lead to more problems and trouble, as some options in elementary_config are not respected anymore. Differential Revision: https://phab.enlightenment.org/D7175 --- src/lib/elementary/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/meson.build b/src/lib/elementary/meson.build index 69f48f3cda..0c4c324ea5 100644 --- a/src/lib/elementary/meson.build +++ b/src/lib/elementary/meson.build @@ -881,7 +881,7 @@ elm_options = configuration_data() config_h.set_quoted('ELM_TOP_BUILD_DIR', meson.build_root()) config_h.set_quoted('MODULES_PATH', join_paths(dir_lib, 'modules')) -config_h.set_quoted('ELEMENTARY_BASE_DIR', '.data') +config_h.set_quoted('ELEMENTARY_BASE_DIR', '.elementary') config_h.set_quoted('ICON_DIR', join_paths(dir_lib, 'icons')) elm_options.set('ELM_UNIX', '1')