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 18:24:59 +0100
commitd43a3b9ddb5cb1409613788934b82e23514383f9 (patch)
tree3ca65dd194ce430ad94d07e2b6e417e6c12a2edc
parent011d6de73bf49148ee62adbac0580638aa6845ea (diff)
downloadgvfs-d43a3b9ddb5cb1409613788934b82e23514383f9.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,