summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-17 21:08:43 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-21 21:18:06 +0100
commitbced2bd5c383935c1487e0d72800c6439e5859c8 (patch)
tree663e79305c7bdbf0ef8895d6afb4a19266b0ea3d /client
parentce13717c433c841f7b3e749ccedcdfc830c4f761 (diff)
downloadgvfs-bced2bd5c383935c1487e0d72800c6439e5859c8.tar.gz
build: Fix the use of pkg-config file variables
The names of the variables in meson corresponding to the variables obtained from the pkg-config files has been fixed by using a pattern. The pattern uses the dependency name as the prefix and the obtained variable as the suffix.
Diffstat (limited to 'client')
-rw-r--r--client/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/meson.build b/client/meson.build
index 72e80c10..73b8d7e3 100644
--- a/client/meson.build
+++ b/client/meson.build
@@ -60,7 +60,7 @@ libgvfsdbus = shared_module(
link_depends: symbol_map,
install: true,
install_rpath: gvfs_rpath,
- install_dir: gio_module_dir,
+ install_dir: gio_giomoduledir,
)
if enable_devel_utils
@@ -77,10 +77,10 @@ endif
# FUSE daemon
if enable_fuse
- if install_tmp_files_dir
+ if install_systemd_tmpfilesdir
install_data(
'gvfsd-fuse-tmpfiles.conf',
- install_dir: tmp_files_dir,
+ install_dir: systemd_tmpfilesdir,
)
endif