From 60521783c3cb470ca4896fc7db3d6f5183368cae Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 23 Nov 2013 11:35:16 +0100 Subject: build: fix install path for manual Appending man1 to the MANDIR was forgotten, so the manual was installed in the wrong path. --- wscript_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript_build.py') diff --git a/wscript_build.py b/wscript_build.py index 38ea141b3d..302d3caeb4 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -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) -- cgit v1.2.3