bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=29ef798c26f811987d2629027d0687ea351c4212
commit 29ef798c26f811987d2629027d0687ea351c4212 Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Sat Jul 22 17:49:04 2017 +0200 meson: also install the tiling-theme --- src/modules/tiling/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/tiling/meson.build b/src/modules/tiling/meson.build index dd0a66f14..1c7715ab3 100644 --- a/src/modules/tiling/meson.build +++ b/src/modules/tiling/meson.build @@ -6,7 +6,8 @@ tiling_src = [ 'window_tree.h', ] -tiling_dir = join_paths(dir_module_e, 'tiling', module_arch) +tiling_mod_dir = join_paths(dir_module_e, 'tiling') +tiling_dir = join_paths(tiling_mod_dir, module_arch) if get_option('tiling') == true config_h.set('USE_MODULE_TILING', '1') @@ -21,3 +22,4 @@ if get_option('tiling') == true ) endif +install_data('e-module-tiling.edj', install_dir: tiling_mod_dir, install : true) --