From de89404b0edec7cc6a9808e94dd2559ebabdbe10 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Sun, 13 Mar 2016 04:24:45 +0100 Subject: [PATCH] geanygendoc: Work around an rst2html 0.8.1 bug Apparently rst2html 0.8.1 from Ubuntu 12.04 incorrectly resolves relative paths to the stylesheets listed in `--stylesheet-path` but the first one. Work around this by providing absolute paths to the stylesheets. --- geanygendoc/docs/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geanygendoc/docs/Makefile.am b/geanygendoc/docs/Makefile.am index bde0f83a2..f3975b69e 100644 --- a/geanygendoc/docs/Makefile.am +++ b/geanygendoc/docs/Makefile.am @@ -15,6 +15,6 @@ dist_pluginhtmldoc_DATA = \ if BUILD_RST manual.html: manual.rst manual.css html4css1.css $(AM_V_GEN) $(RST2HTML) -d --strict \ - --stylesheet-path $(srcdir)/html4css1.css,$(srcdir)/manual.css \ + --stylesheet-path $(abs_srcdir)/html4css1.css,$(abs_srcdir)/manual.css \ $(srcdir)/manual.rst $@ endif BUILD_RST