summaryrefslogtreecommitdiff
path: root/monitor/afc
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/afc
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/afc')
-rw-r--r--monitor/afc/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/monitor/afc/meson.build b/monitor/afc/meson.build
index 741f64e5..ff1177ca 100644
--- a/monitor/afc/meson.build
+++ b/monitor/afc/meson.build
@@ -1,7 +1,7 @@
sources = files(
'afcvolumemonitordaemon.c',
'afcvolume.c',
- 'afcvolumemonitor.c'
+ 'afcvolumemonitor.c',
)
deps = [
@@ -9,13 +9,13 @@ deps = [
gobject_dep,
libimobiledevice_dep,
libplist_dep,
- libgvfsproxyvolumemonitordaemon_noin_dep
+ libgvfsproxyvolumemonitordaemon_noin_dep,
]
cflags = [
'-DG_LOG_DOMAIN="GVFS-AFC"',
'-DGIO_MODULE_DIR="@0@"'.format(gio_module_dir),
- '-DGVFS_LOCALEDIR="@0@"'.format(gvfs_localedir)
+ '-DGVFS_LOCALEDIR="@0@"'.format(gvfs_localedir),
]
executable(
@@ -26,5 +26,5 @@ executable(
c_args: cflags,
install: true,
install_rpath: gvfs_rpath,
- install_dir: gvfs_libexecdir
+ install_dir: gvfs_libexecdir,
)