summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2019-01-07 17:44:10 +0100
committerOndrej Holy <oholy@redhat.com>2019-01-07 17:44:10 +0100
commit2a42f8318f3c2e3f591addf02eb884db98f66201 (patch)
treee6eb7e989be6f88c463ff0bcb16e45634cb7638a /test
parent7a2ff5035bf6cce3c783224c9df800c4a59a1f8f (diff)
downloadgvfs-2a42f8318f3c2e3f591addf02eb884db98f66201.tar.gz
Revert "build: Use generators placeholders"
This reverts commit dc34f1be6a3c1fa6d5615ad5d647003e7ce3196f.
Diffstat (limited to 'test')
-rw-r--r--test/meson.build8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/meson.build b/test/meson.build
index bc53a4f4..d91a65e3 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -5,9 +5,11 @@ if enable_installed_tests
tests_conf = configuration_data()
tests_conf.set('testdir', installed_tests_execdir)
+ session = 'session.conf'
+
configure_file(
- input: 'session.conf.in',
- output: '@BASENAME@',
+ input: session + '.in',
+ output: session,
configuration: tests_conf,
install: true,
install_dir: installed_tests_execdir,
@@ -17,7 +19,7 @@ if enable_installed_tests
configure_file(
input: all_tests + '.in',
- output: '@BASENAME@.test',
+ output: all_tests + '.test',
configuration: tests_conf,
install: true,
install_dir: installed_tests_metadir,