summaryrefslogtreecommitdiff
path: root/monitor/goa
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-17 15:48:39 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-04 16:33:53 +0100
commitf4ee93b06cfc4d9f727f9174e40d08097a25d571 (patch)
tree6dd68ea2ec3540a8a835c3f479373273995130e9 /monitor/goa
parentc25bc351bb2605e57bc9a6d9250c9d4748c3d9e0 (diff)
downloadgvfs-f4ee93b06cfc4d9f727f9174e40d08097a25d571.tar.gz
build: Add trailing commas
Add missing trailing commas that avoids getting noise when another file/parameter is added and eases reviewing changes[0]. [0] https://gitlab.gnome.org/GNOME/dconf/merge_requests/11#note_291585
Diffstat (limited to 'monitor/goa')
-rw-r--r--monitor/goa/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/monitor/goa/meson.build b/monitor/goa/meson.build
index 563d380c..e9f13bdf 100644
--- a/monitor/goa/meson.build
+++ b/monitor/goa/meson.build
@@ -1,20 +1,20 @@
sources = files(
'goavolumemonitordaemon.c',
'goavolume.c',
- 'goavolumemonitor.c'
+ 'goavolumemonitor.c',
)
deps = [
glib_dep,
goa_dep,
gobject_dep,
- libgvfsproxyvolumemonitordaemon_noin_dep
+ libgvfsproxyvolumemonitordaemon_noin_dep,
]
cflags = [
'-DG_LOG_DOMAIN="GVFS-GOA"',
'-DGIO_MODULE_DIR="@0@"'.format(gio_module_dir),
- '-DGVFS_LOCALEDIR="@0@"'.format(gvfs_localedir)
+ '-DGVFS_LOCALEDIR="@0@"'.format(gvfs_localedir),
]
executable(
@@ -25,5 +25,5 @@ executable(
c_args: cflags,
install: true,
install_rpath: gvfs_rpath,
- install_dir: gvfs_libexecdir
+ install_dir: gvfs_libexecdir,
)