summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-10-18 12:50:20 +0200
committerThomas Haller <thaller@redhat.com>2018-12-20 13:50:34 +0100
commit35171b3c3f850a9136e48d12ead389ee80842268 (patch)
treeaf3aaf34027fe82e311c5f46d8fbe7c710ed3116 /man
parentb00e004890b9c39fec4fe543bb95fdc263e774bc (diff)
downloadNetworkManager-35171b3c3f850a9136e48d12ead389ee80842268.tar.gz
build: meson: 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.build12
1 files changed, 6 insertions, 6 deletions
diff --git a/man/meson.build b/man/meson.build
index 4c33ff30e8..a4ef3d9e21 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -14,7 +14,7 @@ common = 'common.ent'
common_ent_file = configure_file(
input: common + '.in',
output: common,
- configuration: common_conf
+ configuration: common_conf,
)
xsltproc_options = [
@@ -28,7 +28,7 @@ xsltproc_options = [
'--stringparam', 'man.th.extra1.suppress', '1',
'--stringparam', 'man.authors.section.enabled', '0',
'--stringparam', 'man.copyright.section.enabled', '0',
- '--stringparam', 'man.th.title.max.length', '30'
+ '--stringparam', 'man.th.title.max.length', '30',
]
docbook_xls = 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
@@ -62,14 +62,14 @@ foreach man: mans
command: xsltproc_options + [docbook_xls, '@INPUT@'],
depend_files: common_ent_file,
install: true,
- install_dir: join_paths(nm_mandir, 'man' + man[1])
+ install_dir: join_paths(nm_mandir, 'man' + man[1]),
)
endforeach
if enable_introspection
mans = [
['nm-settings-keyfile', '5', nm_settings_keyfile_docs],
- ['nm-settings', '5', nm_settings_docs]
+ ['nm-settings', '5', nm_settings_docs],
]
if enable_ifcfg_rh
@@ -83,7 +83,7 @@ if enable_introspection
output,
input: man[2],
output: output,
- command: xsltproc_options + [join_paths(meson.current_source_dir(), man[0] + '.xsl'), '@INPUT@']
+ command: xsltproc_options + [join_paths(meson.current_source_dir(), man[0] + '.xsl'), '@INPUT@'],
)
content_files += input.full_path()
@@ -95,7 +95,7 @@ if enable_introspection
output: output,
command: xsltproc_options + [docbook_xls, '@INPUT@'],
install: true,
- install_dir: join_paths(nm_mandir, 'man' + man[1])
+ install_dir: join_paths(nm_mandir, 'man' + man[1]),
)
endforeach
endif