summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2018-07-27 07:31:54 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2018-07-27 14:31:54 +0300
commite7dcf5cf16fdab2621bacde0bfebdac88131cdb5 (patch)
treee8fc2cf8c4dea63ec05ce3a2e397c66d125079c5 /test cases
parentc7360dd426f06c67c9ceca85c0e36e02ae61c18b (diff)
downloadmeson-e7dcf5cf16fdab2621bacde0bfebdac88131cdb5.tar.gz
Warn for future keyword (#3908)
Diffstat (limited to '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 3f6a15951..737408ebf 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@']
)