diff options
| author | Michael Biebl <biebl@debian.org> | 2022-08-16 18:25:29 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-08-16 18:25:29 +0200 |
| commit | e8c0c4050b07c08cc0f34d41cdff98f2cdc1cc93 (patch) | |
| tree | 79a3d9572e508d4b193ea175c8ed103b2024f727 /src/libnmc-setting/meson.build | |
| parent | 49ac65f875a36d7ebcbc8270cf0fc60acbb2e052 (diff) | |
| parent | 0018d1f3cf71d680d7b6bceda55a5717244d8b26 (diff) | |
Update upstream source from tag 'upstream/1.39.90'
Update to upstream version '1.39.90' with Debian dir 898f1bfdb7bf17595463e4195c78d8455df545e6
Diffstat (limited to 'src/libnmc-setting/meson.build')
| -rw-r--r-- | src/libnmc-setting/meson.build | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libnmc-setting/meson.build b/src/libnmc-setting/meson.build index 8f07ae63..49314cad 100644 --- a/src/libnmc-setting/meson.build +++ b/src/libnmc-setting/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: LGPL-2.1-or-later if enable_docs + assert(enable_introspection, '-Ddocs=true requires -Dintrospection=true') settings_docs_input_xml = custom_target( 'settings-docs-input.xml', input: [nm_settings_docs_xml_gir, nm_property_infos_xml['nmcli']], @@ -18,7 +19,12 @@ if enable_docs 'settings-docs.h', input: settings_docs_input_xml, output: 'settings-docs.h', - command: [xsltproc, '--output', '@OUTPUT@', join_paths(meson.current_source_dir(), 'settings-docs.xsl'), '@INPUT@'], + command: [ + python.path(), + join_paths(meson.source_root(), 'tools', 'generate-docs-settings-docs.py'), + '--output', '@OUTPUT@', + '--xml', '@INPUT@' + ], ) test( |