diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-10-18 12:50:20 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-12-20 13:50:34 +0100 |
commit | 35171b3c3f850a9136e48d12ead389ee80842268 (patch) | |
tree | af3aaf34027fe82e311c5f46d8fbe7c710ed3116 /docs | |
parent | b00e004890b9c39fec4fe543bb95fdc263e774bc (diff) | |
download | NetworkManager-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 'docs')
-rw-r--r-- | docs/api/meson.build | 6 | ||||
-rw-r--r-- | docs/libnm-glib/meson.build | 8 | ||||
-rw-r--r-- | docs/libnm-util/meson.build | 8 | ||||
-rw-r--r-- | docs/libnm/meson.build | 10 | ||||
-rw-r--r-- | docs/meson.build | 2 |
5 files changed, 17 insertions, 17 deletions
diff --git a/docs/api/meson.build b/docs/api/meson.build index 31b9776c88..609e4ce844 100644 --- a/docs/api/meson.build +++ b/docs/api/meson.build @@ -10,14 +10,14 @@ if enable_introspection output: output, command: [xsltproc, '--output', '@OUTPUT@', join_paths(meson.current_source_dir(), settings + '.xsl'), '@INPUT@'], # FIXME: there is no target depending on this, so it will not be built - build_by_default: true + build_by_default: true, ) endif configure_file( input: version_xml + '.in', output: version_xml, - configuration: version_conf + configuration: version_conf, ) content_files += join_paths(meson.source_root(), 'COPYING') @@ -44,5 +44,5 @@ gnome.gtkdoc( main_xml: 'network-manager-docs.xml', src_dir: meson.current_source_dir(), content_files: content_files, - install: true + install: true, ) diff --git a/docs/libnm-glib/meson.build b/docs/libnm-glib/meson.build index b760ce003e..622669ee76 100644 --- a/docs/libnm-glib/meson.build +++ b/docs/libnm-glib/meson.build @@ -9,13 +9,13 @@ private_headers = [ 'nm-remote-connection-private.h', 'nm-types-private.h', 'nm-secret-agent-glue.h', - 'nm-vpn-plugin-glue.h' + 'nm-vpn-plugin-glue.h', ] configure_file( input: version_xml + '.in', output: version_xml, - configuration: version_conf + configuration: version_conf, ) gnome.gtkdoc( @@ -24,7 +24,7 @@ gnome.gtkdoc( src_dir: join_paths(meson.source_root(), 'libnm-glib'), dependencies: [ libnm_glib_dep, - libnm_glib_vpn_dep + libnm_glib_vpn_dep, ], scan_args: [ '--rebuild-types', @@ -35,5 +35,5 @@ gnome.gtkdoc( fixxref_args: '--html-dir=' + join_paths(nm_prefix, gnome.gtkdoc_html_dir(doc_module)), gobject_typesfile: doc_module + '.types', html_assets: doc_module + '.png', - install: true + install: true, ) diff --git a/docs/libnm-util/meson.build b/docs/libnm-util/meson.build index 7b06baf3d4..1492103dc9 100644 --- a/docs/libnm-util/meson.build +++ b/docs/libnm-util/meson.build @@ -6,13 +6,13 @@ private_headers = [ 'nm-setting-private.h', 'nm-param-spec-specialized.h', 'nm-test-utils.h', - 'nm-version.h' + 'nm-version.h', ] configure_file( input: version_xml + '.in', output: version_xml, - configuration: version_conf + configuration: version_conf, ) gnome.gtkdoc( @@ -23,10 +23,10 @@ gnome.gtkdoc( scan_args: [ '--rebuild-types', '--rebuild-sections', - '--ignore-headers=' + ' '.join(private_headers) + '--ignore-headers=' + ' '.join(private_headers), ], scanobjs_args: '--type-init-func="g_type_init();"', fixxref_args: '--html-dir=' + join_paths(nm_prefix, gnome.gtkdoc_html_dir(doc_module)), gobject_typesfile: doc_module + '.types', - install: true + install: true, ) diff --git a/docs/libnm/meson.build b/docs/libnm/meson.build index 77f7ed0f94..c031a3176f 100644 --- a/docs/libnm/meson.build +++ b/docs/libnm/meson.build @@ -23,13 +23,13 @@ private_headers = [ 'nm-core-tests-enum-types.h', 'nm-keyfile-internal.h', 'nm-keyfile-utils.h', - 'test-general-enums.h' + 'test-general-enums.h', ] configure_file( input: version_xml + '.in', output: version_xml, - configuration: version_conf + configuration: version_conf, ) gnome.gtkdoc( @@ -37,17 +37,17 @@ gnome.gtkdoc( main_xml: doc_module + '-docs.xml', src_dir: [ libnm_core_inc, - libnm_inc + libnm_inc, ], dependencies: libnm_dep, scan_args: [ '--rebuild-types', '--rebuild-sections', - '--ignore-headers=' + ' '.join(private_headers) + '--ignore-headers=' + ' '.join(private_headers), ], scanobjs_args: '--type-init-func="g_type_init();"', fixxref_args: '--html-dir=' + join_paths(nm_prefix, gnome.gtkdoc_html_dir(doc_module)), gobject_typesfile: doc_module + '.types', html_assets: doc_module + '.png', - install: true + install: true, ) diff --git a/docs/meson.build b/docs/meson.build index 92e6d6e9b9..5c053165a1 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -14,5 +14,5 @@ endif test( 'check-docs', find_program(join_paths(meson.source_root(), 'tools', 'check-docs.sh')), - args: [meson.source_root(), meson.build_root()] + args: [meson.source_root(), meson.build_root()], ) |