From 699c42ed37106f42e004f500e0c5539d89e02f4e Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Wed, 18 Jul 2018 11:25:20 -0400 Subject: Do not use 'in' as variable name in test cases --- test cases/common/170 custom target template substitution/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test cases/common/170 custom target template substitution/meson.build b/test cases/common/170 custom target template substitution/meson.build index 3f6a159..737408e 100644 --- a/test cases/common/170 custom target template substitution/meson.build +++ b/test cases/common/170 custom target template substitution/meson.build @@ -4,12 +4,12 @@ check = find_program('checkcopy.py') config = configuration_data() -in = configure_file(configuration : config, output : 'x@IN') +config_file = configure_file(configuration : config, output : 'x@IN') # Check that substitution does not find @FOO@ and then misses @INPUT0@. # Check the resulting x@INPUT1@ is not replaced. foo = custom_target('runcheck', - input : [in, 'foo.c.in'], + input : [config_file, 'foo.c.in'], output : 'foo.c', command : [check, '-D@FOO@INPUT0@PUT1@', '@INPUT1@', '@OUTPUT@'] ) -- cgit v1.1