meson: fix rst2html command

This commit is contained in:
J. Dekker 2022-07-05 09:25:51 +02:00 committed by Dudemanguy
parent 369168b9be
commit 659ab2f946
1 changed files with 1 additions and 1 deletions

View File

@ -1650,7 +1650,7 @@ if rst2html.found()
custom_target('html-manpages',
input: manpage,
output: 'mpv.html',
command: [rst2html, manpage, '@INPUT@', '@OUTPUT@'],
command: [rst2html, '@INPUT@', '@OUTPUT@'],
install: true,
install_dir: join_paths(datadir, 'doc', 'mpv')
)