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-04 16:33:53 +0100
commit22e9f7721b891b17cd726f1bf92b15a35be34d22 (patch)
treef8a149bb5a4deb7279710bb0d954a826fba378ca /metadata
parent9523d8e09e0088c8cd58ace494d47cc3083151fc (diff)
downloadgvfs-22e9f7721b891b17cd726f1bf92b15a35be34d22.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,
)