aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2018-07-18 11:25:20 -0400
committerNirbheek Chauhan <nirbheek@centricular.com>2018-08-24 03:11:38 +0530
commit699c42ed37106f42e004f500e0c5539d89e02f4e (patch)
treedf1941561c0d8c5de97ead82c7c6ccc7944dfaf2
parenteda8fae56c68307111d559f0f4b503cf9e0a4736 (diff)
downloadmeson-699c42ed37106f42e004f500e0c5539d89e02f4e.zip
meson-699c42ed37106f42e004f500e0c5539d89e02f4e.tar.gz
meson-699c42ed37106f42e004f500e0c5539d89e02f4e.tar.bz2
Do not use 'in' as variable name in test cases
-rw-r--r--test cases/common/170 custom target template substitution/meson.build4
1 files 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@']
)