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:
Stefano Pigozzi 2013-11-23 11:35:16 +01:00
parent add439b06b
commit 60521783c3
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def _build_man(ctx):
target = 'DOCS/man/en/mpv.1',
source = 'DOCS/man/en/mpv.rst',
rule = '${RST2MAN} ${SRC} ${TGT}',
install_path = ctx.env.MANDIR)
install_path = ctx.env.MANDIR + '/man1')
_add_rst_manual_dependencies(ctx)