diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-12-17 15:48:39 +0100 |
---|---|---|
committer | Iñigo Martínez <inigomartinez@gmail.com> | 2019-01-04 16:33:53 +0100 |
commit | f4ee93b06cfc4d9f727f9174e40d08097a25d571 (patch) | |
tree | 6dd68ea2ec3540a8a835c3f479373273995130e9 /monitor/gphoto2 | |
parent | c25bc351bb2605e57bc9a6d9250c9d4748c3d9e0 (diff) | |
download | gvfs-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/gphoto2')
-rw-r--r-- | monitor/gphoto2/meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/monitor/gphoto2/meson.build b/monitor/gphoto2/meson.build index 63b4e8c7..76a0768e 100644 --- a/monitor/gphoto2/meson.build +++ b/monitor/gphoto2/meson.build @@ -1,7 +1,7 @@ sources = files( 'gphoto2-volume-monitor-daemon.c', 'ggphoto2volume.c', - 'ggphoto2volumemonitor.c' + 'ggphoto2volumemonitor.c', ) deps = [ @@ -9,13 +9,13 @@ deps = [ gobject_dep, libgphoto2_dep, libgvfscommon_gphoto2_dep, - libgvfsproxyvolumemonitordaemon_noin_dep + libgvfsproxyvolumemonitordaemon_noin_dep, ] cflags = [ '-DG_LOG_DOMAIN="GVFS-GPhoto2"', '-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, ) |