summaryrefslogtreecommitdiff
path: root/libnm
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-05-29 10:21:07 +0200
committerThomas Haller <thaller@redhat.com>2020-06-11 10:53:49 +0200
commitd8992ce931d4648836b466270c757905b9fadab6 (patch)
tree6f62f42e7e2ae8cfa116868cfdf9dacad6bc2307 /libnm
parent960ab397397a2688833fda6cf00e873624d42fd9 (diff)
downloadNetworkManager-d8992ce931d4648836b466270c757905b9fadab6.tar.gz
docs: rename "nm-settings-docs.xml" to "nm-settings-docs-dbus.xml"
"nm-settings-docs-dbus.xml" is "nm-settings-docs-gir.xml" merged with "nm-property-infos-dbus.xml". The name should reflect that, also because we will get more files with this naming scheme.
Diffstat (limited to 'libnm')
-rw-r--r--libnm/meson.build22
1 files changed, 12 insertions, 10 deletions
diff --git a/libnm/meson.build b/libnm/meson.build
index b77a759640..1b8d128a43 100644
--- a/libnm/meson.build
+++ b/libnm/meson.build
@@ -288,24 +288,26 @@ if enable_introspection
depends: libnm_gir,
)
- nm_settings_docs_xml = {
- 'gir': nm_settings_docs_xml_gir,
- }
-
- name = 'nm-settings-docs.xml'
- nm_settings_docs = custom_target(
- name,
- input: [nm_settings_docs_xml_gir, nm_property_infos_xml['dbus']],
- output: name,
+ name = 'dbus'
+ nm_settings_docs_xml_dbus = custom_target(
+ 'nm-settings-docs-' + name + '.xml',
+ input: [nm_settings_docs_xml_gir, nm_property_infos_xml[name]],
+ output: 'nm-settings-docs-' + name + '.xml',
command: [
python.path(),
join_paths(meson.current_source_dir(), 'generate-docs-nm-settings-docs-merge.py'),
'@OUTPUT@',
- nm_property_infos_xml['dbus'],
+ nm_property_infos_xml[name],
nm_settings_docs_xml_gir,
],
depends: libnm_gir,
)
+
+ nm_settings_docs_xml = {
+ 'gir': nm_settings_docs_xml_gir,
+ 'dbus': nm_settings_docs_xml_dbus,
+ }
+
endif
if enable_tests