stefan pushed a commit to branch efl-1.23. http://git.enlightenment.org/core/efl.git/commit/?id=8d1e3661ec5ce6c176efc62d0cb5778a3b6c75b9
commit 8d1e3661ec5ce6c176efc62d0cb5778a3b6c75b9 Author: Marcel Hollerbach <[email protected]> Date: Wed Oct 2 19:03:58 2019 +0200 meson: pass correct PACKAGE_DATA_DIR Summary: PACKAGE_DATA_DIR was set to the build dir instead to the elementary specific data dir. ref T8304 Reviewers: segfaultxavi Reviewed By: segfaultxavi Subscribers: segfaultxavi, cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8304 Differential Revision: https://phab.enlightenment.org/D10275 --- doc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/meson.build b/doc/meson.build index 068554f87b..5598b18ba3 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -133,7 +133,7 @@ foreach widget_preview : widget_previews dependencies: elementary, build_by_default: false, c_args : [ - '-DPACKAGE_DATA_DIR="'+meson.current_build_dir()+'"', + '-DPACKAGE_DATA_DIR="'+join_paths(meson.source_root(), 'data', 'elementary')+'"', '-DTESTS_BUILD_DIR="'+meson.current_build_dir()+'"', '-DTESTS_SRC_DIR="'+meson.current_source_dir()+'"', '-DDOCW_DIR="'+meson.current_build_dir()+'"'] --
