summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-17 23:25:38 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-21 21:18:06 +0100
commit7fde89de74f2d25cf2c074d227a7ffd3a732647d (patch)
tree563007cbfd392e3bf61a8a7c91f00f59247772bb /test
parent5d2533279cdc4660fa0a6f85d86c3d90d665e9f6 (diff)
downloadgvfs-7fde89de74f2d25cf2c074d227a7ffd3a732647d.tar.gz
build: Do not use prefix on directory variables
Although usually directory variables are set by using the `prefix` directory, this might cause issues due to parameters that need relative directories. In order to ease the transition `prefix` directory has been stripped from directory variables and only has been appended when necessary.
Diffstat (limited to 'test')
-rw-r--r--test/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build
index bc53a4f4..599fc0b4 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -3,7 +3,7 @@ if enable_installed_tests
installed_tests_metadir = gvfs_datadir / 'installed-tests' / gvfs_name
tests_conf = configuration_data()
- tests_conf.set('testdir', installed_tests_execdir)
+ tests_conf.set('testdir', gvfs_prefix / installed_tests_execdir)
configure_file(
input: 'session.conf.in',