From 33ff0d8d8320d362effc6b0aed3596a53f2e7bb8 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 18 Oct 2018 12:43:37 +0100 Subject: [PATCH] build - new meson git added in as a keyword, so avoid it use input instead of in, and output instead of out to avoid the new keyword and be consistent. --- data/themes/meson.build | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data/themes/meson.build b/data/themes/meson.build index 4eeaa68d..5331bd41 100644 --- a/data/themes/meson.build +++ b/data/themes/meson.build @@ -22,16 +22,16 @@ edje_install_dir = join_paths(get_option('datadir'), meson.project_name(), 'themes') foreach to_compile: edje_to_compile - out = to_compile[0] + '.edj' - in = to_compile[0] + '.edc' - edj_targets += [custom_target(out, + output = to_compile[0] + '.edj' + input = to_compile[0] + '.edc' + edj_targets += [custom_target(output, install:true, install_dir: edje_install_dir, depend_files: files(to_compile[1]), command: command, - input: in, - output: out)] - edj_files += [join_paths(edje_install_dir, out)] + input: input, + output: output)] + edj_files += [join_paths(edje_install_dir, output)] endforeach subdir('nyanology')