diff options
author | Benjamin Berg <bberg@redhat.com> | 2022-02-07 15:56:25 +0100 |
---|---|---|
committer | Benjamin Berg <bberg@redhat.com> | 2022-02-07 15:57:21 +0100 |
commit | fb02a57a2b9eac0527d7644e3e394e6d709fa182 (patch) | |
tree | 0283d64b429c2795c61bc100677ced8bd1e3a35a /doc | |
parent | f596bd016449813f4a9482925ead1938da52f8ba (diff) |
meson: Clarify why build_by_default is needed for some custom_targets
Diffstat (limited to 'doc')
-rw-r--r-- | doc/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build index 636ef8f..dc93a16 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -14,7 +14,8 @@ foreach iface: upowerd_dbus_interfaces input: files(dbus_dir / iface + '.xml'), output: iface_ref, command: [xsltproc, '--output', '@OUTPUT@', spec_to_docbook, '@INPUT@'], - # XXX: This appears to be needed so that "ninja -C _build install" works + # gnome.gtkdoc dependencies don't work properly + # https://github.com/mesonbuild/meson/pull/9960 build_by_default: get_option('gtk-doc'), ) endforeach |