From 15e75b4b6b302c8a12a799dd008f756437cea60d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Sep 2023 17:07:14 -0400 Subject: Clean up sphinx build commands --- doc/html/meson.build | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'doc/html') diff --git a/doc/html/meson.build b/doc/html/meson.build index a6f1d6fe..d97d368b 100644 --- a/doc/html/meson.build +++ b/doc/html/meson.build @@ -8,10 +8,12 @@ html_dir = docdir / versioned_name / 'html' custom_target( 'html', build_by_default: true, - command: [ - sphinx_build, '-M', 'html', '@OUTDIR@' / '..', '@OUTDIR@' / '..', + command: sphinx_build_command + [ + '-b', 'html', '-t', 'html', - ] + sphinx_flags, + sphinx_in_dir, + '@OUTDIR@', + ], input: [c_rst_files, c_serd_rst, c_index_xml, conf_py], install: true, install_dir: html_dir, @@ -25,5 +27,5 @@ custom_target( ) if not meson.is_subproject() - summary('Paginated HTML', get_option('prefix') / html_dir, section: 'Directories') + summary('HTML', get_option('prefix') / html_dir, section: 'Directories') endif -- cgit v1.2.1