mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-08 12:38:01 +02:00
doc: Make Meson yelp-build invocation compatible with older versions
Older versions of yelp-build like the one in Debian 11 do not allow permuting arguments, so all options (in this case -o) must appear before all positional parameters. Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
29ae675978
commit
c74504fb7e
1 changed files with 5 additions and 1 deletions
|
|
@ -226,7 +226,11 @@ if ducktype.found() and yelpbuild.found()
|
|||
'C.css',
|
||||
'highlight.pack.js',
|
||||
],
|
||||
command: [ yelpbuild, 'html', '@INPUT@', '-o', meson.current_build_dir() ],
|
||||
command: [
|
||||
yelpbuild, 'html',
|
||||
'-o', meson.current_build_dir(),
|
||||
'@INPUT@',
|
||||
],
|
||||
install: true,
|
||||
install_dir: docs_dir,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue