summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2019-04-04 13:14:44 +0200
committerOndrej Holy <oholy@redhat.com>2019-05-16 09:36:59 +0000
commite837684af5a28464366cb0aa92a6200a310fd0ec (patch)
tree022616aa2890f63566294a1f7330fb12d5abcbca /test
parenta19e737c7fb8d6aee95d00b0b55ef5f7429b24a7 (diff)
downloadgvfs-e837684af5a28464366cb0aa92a6200a310fd0ec.tar.gz
build: Use dictionaries in configuration_data objects
Since 0.49.0[0], a dictionary could be used as a replacement for each key/value pair as if `set` method was called for each of them. Almost all of the `configuration_data` objects have been changed to use a dictionary. [0] http://mesonbuild.com/Reference-manual.html#configuration_data
Diffstat (limited to 'test')
-rw-r--r--test/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/meson.build b/test/meson.build
index 599fc0b4..552a30cf 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -2,8 +2,7 @@ if enable_installed_tests
installed_tests_execdir = gvfs_libexecdir / 'installed-tests' / gvfs_name
installed_tests_metadir = gvfs_datadir / 'installed-tests' / gvfs_name
- tests_conf = configuration_data()
- tests_conf.set('testdir', gvfs_prefix / installed_tests_execdir)
+ tests_conf = {'testdir': gvfs_prefix / installed_tests_execdir}
configure_file(
input: 'session.conf.in',