diff options
author | David Robillard <d@drobilla.net> | 2024-12-10 16:40:58 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 00:19:45 -0500 |
commit | 6102356198be362e78ebd8ea16dee30a7d370cf8 (patch) | |
tree | c22abe5e3302a10939f431174cc00c1a261a9746 /doc/singlehtml | |
parent | 54428ad801d32394d2488c54f1887e7fd45c5bc2 (diff) | |
download | zix-6102356198be362e78ebd8ea16dee30a7d370cf8.tar.gz zix-6102356198be362e78ebd8ea16dee30a7d370cf8.tar.bz2 zix-6102356198be362e78ebd8ea16dee30a7d370cf8.zip |
Fix meson file formatting
As dictated by muon.
Diffstat (limited to 'doc/singlehtml')
-rw-r--r-- | doc/singlehtml/meson.build | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/doc/singlehtml/meson.build b/doc/singlehtml/meson.build index 33bff61..32a8201 100644 --- a/doc/singlehtml/meson.build +++ b/doc/singlehtml/meson.build @@ -6,12 +6,15 @@ singlehtml_dir = docdir / versioned_name / 'singlehtml' custom_target( 'singlehtml', build_by_default: true, - command: sphinx_build_command + [ - '-b', 'singlehtml', - '-t', 'singlehtml', - sphinx_in_dir, - '@OUTDIR@', - ], + command: ( + sphinx_build_command + + [ + '-b', 'singlehtml', + '-t', 'singlehtml', + sphinx_in_dir, + '@OUTDIR@', + ] + ), input: [api_zix_rst, conf_py, sphinx_input], install: true, install_dir: singlehtml_dir, |