From 12981030a563669a9560d4af71c389d9cad52380 Mon Sep 17 00:00:00 2001 From: Sergey Starosek Date: Tue, 10 Dec 2013 13:47:39 +0200 Subject: [PATCH] Fix asciidoc CSS path Both JS and CSS resources need to be embedded into HTML Signed-off-by: Sergey Starosek Signed-off-by: Dirk Hohndel --- Documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Makefile b/Documentation/Makefile index 8b539c729..761f43bf6 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -19,7 +19,7 @@ $(OUT)$(DOCNAME).pdf: $(DOCSOURCE) $(OUT)$(HTMLDOC): $(DOCSOURCE) @echo "if asciidoc isn't found no HTML documentation is produced but Subsurface is still functional" - $(ASCIIDOC) -a toc -a toclevels=3 -a themedir=$(PWD) -a theme=$(THEME) $< || true + $(ASCIIDOC) -a toc -a toclevels=3 -a themedir=$(PWD) -a theme=$(THEME) -a stylesdir=$(PWD) $< || true # Alternatively:: $(OUT)$(DOCNAME).xhtml: $(DOCSOURCE)