wscript_build: rst2pdf: increase section break level

This fix broken pdf build and hopefully less fragile in future
This commit is contained in:
shinchiro 2016-12-11 08:01:42 +08:00 committed by wm4
parent 82855bec50
commit 0aa9b2a469
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ def _build_pdf(ctx):
name = 'rst2pdf',
target = 'DOCS/man/mpv.pdf',
source = 'DOCS/man/mpv.rst',
rule = '${RST2PDF} -c --repeat-table-rows ${SRC} -o ${TGT}',
rule = '${RST2PDF} -c -b 1 --repeat-table-rows ${SRC} -o ${TGT}',
install_path = ctx.env.DOCDIR)
_add_rst_manual_dependencies(ctx)