billiob pushed a commit to branch terminology-1.2.

http://git.enlightenment.org/apps/terminology.git/commit/?id=33ff0d8d8320d362effc6b0aed3596a53f2e7bb8

commit 33ff0d8d8320d362effc6b0aed3596a53f2e7bb8
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Thu Oct 18 12:43:37 2018 +0100

    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 4eeaa68..5331bd4 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')

-- 


Reply via email to