summaryrefslogtreecommitdiff
path: root/man
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 /man
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 'man')
-rw-r--r--man/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/man/meson.build b/man/meson.build
index ccac1fa9..bf4fcb11 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -11,13 +11,13 @@ xsltproc_cmd = [
'--stringparam', 'man.authors.section.enabled', '0',
'--stringparam', 'man.copyright.section.enabled', '0',
'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl',
- '@INPUT@'
+ '@INPUT@',
]
mans = [
'gvfsd',
'gvfsd-fuse',
- 'gvfsd-metadata'
+ 'gvfsd-metadata',
]
foreach man: mans
@@ -30,7 +30,7 @@ foreach man: mans
output: output,
command: xsltproc_cmd,
install: true,
- install_dir: join_paths(gvfs_mandir, 'man1')
+ install_dir: join_paths(gvfs_mandir, 'man1'),
)
endforeach
@@ -43,5 +43,5 @@ custom_target(
output: output,
command: xsltproc_cmd,
install: true,
- install_dir: join_paths(gvfs_mandir, 'man7')
+ install_dir: join_paths(gvfs_mandir, 'man7'),
)