summaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'daemon')
-rw-r--r--daemon/meson.build9
1 files changed, 5 insertions, 4 deletions
diff --git a/daemon/meson.build b/daemon/meson.build
index 0ce0c204..b0adb620 100644
--- a/daemon/meson.build
+++ b/daemon/meson.build
@@ -19,10 +19,11 @@ if install_systemd_systemduserunitdir
dbus_systemd_service = 'SystemdService=' + service
endif
-dbus_service_conf = configuration_data()
-dbus_service_conf.set('service', dbus_service)
-dbus_service_conf.set('exec', gvfs_prefix / gvfs_libexecdir / dbus_exec)
-dbus_service_conf.set('systemd_service', dbus_systemd_service)
+dbus_service_conf = {
+ 'service': dbus_service,
+ 'exec': gvfs_prefix / gvfs_libexecdir / dbus_exec,
+ 'systemd_service': dbus_systemd_service,
+}
daemon_service = configure_file(
input: dbus_service_in,