summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ. Dekker <jdek@itanimul.li>2022-07-05 09:25:51 +0200
committerDudemanguy <random342@airmail.cc>2022-07-05 13:19:42 +0000
commit659ab2f946be1cf09c01d510cb3ffb59972556f6 (patch)
treef567a88a993fdc4b82b7b70de410828398e640dc
parent369168b9be2f00c79fe5f5332b9054e047745de2 (diff)
downloadmpv-659ab2f946be1cf09c01d510cb3ffb59972556f6.tar.bz2
mpv-659ab2f946be1cf09c01d510cb3ffb59972556f6.tar.xz
meson: fix rst2html command
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 697a19b892..4459f4ffaf 100644
--- a/meson.build
+++ b/meson.build
@@ -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')
)