summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorshinchiro <shinchiro@users.noreply.github.com>2016-12-11 08:01:42 +0800
committerwm4 <wm4@nowhere>2016-12-11 14:20:48 +0100
commit0aa9b2a46973699ae0eb5aa2f8eed16311bdab2d (patch)
treeff350431eb92deb302a7c5129a34ed03e62eca0c /wscript_build.py
parent82855bec5036817f64ec90bae48135f5589ed1a5 (diff)
downloadmpv-0aa9b2a46973699ae0eb5aa2f8eed16311bdab2d.tar.bz2
mpv-0aa9b2a46973699ae0eb5aa2f8eed16311bdab2d.tar.xz
wscript_build: rst2pdf: increase section break level
This fix broken pdf build and hopefully less fragile in future
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 43e3dd8c9c..461e971f66 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -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)