summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-10-31 12:16:14 +0100
committerOndrej Holy <oholy@redhat.com>2017-10-31 17:08:43 +0100
commit84da65da37d886add11fd0f07dd386609f2570c7 (patch)
tree0600233dce2ac379f2db06391b2b9697dc6779e5
parentb06bd9c4289ed88d7e08532f03dd3eff14d09cac (diff)
downloadgvfs-84da65da37d886add11fd0f07dd386609f2570c7.tar.gz
build: Fix missing GDU monitor service file
The GDU monitor service file is not created properly due to missing service name variable declaration. This patch adds the variable declaration which fixes the problem. https://bugzilla.gnome.org/show_bug.cgi?id=786149
-rw-r--r--monitor/gdu/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/monitor/gdu/meson.build b/monitor/gdu/meson.build
index 86ddd3d8..653faebc 100644
--- a/monitor/gdu/meson.build
+++ b/monitor/gdu/meson.build
@@ -5,6 +5,8 @@ install_data(
install_dir: gvfs_remote_volume_monitors_dir
)
+service = gvfs_namespace + '.GduVolumeMonitor.service'
+
gdu_service = configure_file(
input: service + '.in',
output: service,