summaryrefslogtreecommitdiffstats
path: root/doc/singlehtml/meson.build
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-23 16:31:32 -0400
committerDavid Robillard <d@drobilla.net>2023-09-23 16:31:32 -0400
commit152cff7f33d10c9f02ca0993deb078b4ef672631 (patch)
tree5092afa17b2c7588c4b9f756a3a6c1d4ec035650 /doc/singlehtml/meson.build
parent2ab71c76aa855b59cadf63235ac7ce6492ad9164 (diff)
downloadlilv-152cff7f33d10c9f02ca0993deb078b4ef672631.tar.gz
lilv-152cff7f33d10c9f02ca0993deb078b4ef672631.tar.bz2
lilv-152cff7f33d10c9f02ca0993deb078b4ef672631.zip
Explicitly specify all documentation dependencies
Yet another attempt to sort out flaky documentation builds. This tries to be careful and describe the complete documentation dependency graph to meson explicitly (ignoring tool outputs that aren't used).
Diffstat (limited to 'doc/singlehtml/meson.build')
-rw-r--r--doc/singlehtml/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/singlehtml/meson.build b/doc/singlehtml/meson.build
index 055a9c2..5d3912d 100644
--- a/doc/singlehtml/meson.build
+++ b/doc/singlehtml/meson.build
@@ -15,12 +15,13 @@ custom_target(
'@OUTDIR@' / '..',
'-t', 'singlehtml',
] + sphinx_flags,
- input: [c_lilv_rst, c_rst_files, conf_py],
+ input: [api_lilv_rst, conf_py, sphinx_input],
install: true,
install_dir: singlehtml_dir,
output: [
- '_static',
'index.html',
+
+ '_static',
],
)