diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-12-17 16:19:19 +0100 |
---|---|---|
committer | Iñigo Martínez <inigomartinez@gmail.com> | 2019-01-04 16:33:53 +0100 |
commit | 9523d8e09e0088c8cd58ace494d47cc3083151fc (patch) | |
tree | 489b34243b97c821fc4541dcbf60b6b460c45219 /test/meson.build | |
parent | 5bc63310a721946199c68160b5134971d5fe0fc6 (diff) | |
download | gvfs-9523d8e09e0088c8cd58ace494d47cc3083151fc.tar.gz |
build: Use / instead of join_paths
Since meson 0.49, the `/` character can be used to join paths[0], so
all the instances of `join_paths` have been replaced.
[0] http://mesonbuild.com/Release-notes-for-0-49-0.html#joining-paths-with-
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/meson.build b/test/meson.build index ee73859a..271b4a4d 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,6 +1,6 @@ if enable_installed_tests - installed_tests_execdir = join_paths(gvfs_libexecdir, 'installed-tests', gvfs_name) - installed_tests_metadir = join_paths(gvfs_datadir, 'installed-tests', gvfs_name) + 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', installed_tests_execdir) |