summaryrefslogtreecommitdiff
path: root/metadata
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 /metadata
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 'metadata')
-rw-r--r--metadata/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/metadata/meson.build b/metadata/meson.build
index 929d32fa..081213dd 100644
--- a/metadata/meson.build
+++ b/metadata/meson.build
@@ -2,14 +2,14 @@ dbus_service = gvfs_namespace + '.Metadata'
dbus_exec = 'gvfsd-metadata'
dbus_systemd_service = ''
-if install_systemd_user_unit_dir
+if install_systemd_systemduserunitdir
service = 'gvfs-metadata.service'
configure_file(
input: service + '.in',
output: service,
install: true,
- install_dir: systemd_user_unit_dir,
+ install_dir: systemd_systemduserunitdir,
configuration: service_conf,
)
@@ -25,7 +25,7 @@ metadata_service = configure_file(
input: dbus_service_in,
output: dbus_service + '.service',
install: true,
- install_dir: dbus_service_dir,
+ install_dir: dbus_session_bus_services_dir,
configuration: dbus_service_conf,
)