mirror of https://github.com/mpv-player/mpv
build: fix install path for manual
Appending man1 to the MANDIR was forgotten, so the manual was installed in the wrong path.
This commit is contained in:
parent
add439b06b
commit
60521783c3
|
@ -16,7 +16,7 @@ def _build_man(ctx):
|
||||||
target = 'DOCS/man/en/mpv.1',
|
target = 'DOCS/man/en/mpv.1',
|
||||||
source = 'DOCS/man/en/mpv.rst',
|
source = 'DOCS/man/en/mpv.rst',
|
||||||
rule = '${RST2MAN} ${SRC} ${TGT}',
|
rule = '${RST2MAN} ${SRC} ${TGT}',
|
||||||
install_path = ctx.env.MANDIR)
|
install_path = ctx.env.MANDIR + '/man1')
|
||||||
|
|
||||||
_add_rst_manual_dependencies(ctx)
|
_add_rst_manual_dependencies(ctx)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue