diff options
author | Sergey Starosek <sergey.starosek@gmail.com> | 2013-12-10 13:47:39 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-10 14:38:45 +0100 |
commit | 12981030a563669a9560d4af71c389d9cad52380 (patch) | |
tree | 294bd6bf27bcbebd2c049cd8b60cdbe1c0d7e69f /Documentation | |
parent | 9545745c90874390e1d9ba740061fca9cb20fcdb (diff) | |
download | subsurface-12981030a563669a9560d4af71c389d9cad52380.tar.gz |
Fix asciidoc CSS path
Both JS and CSS resources need to be embedded into HTML
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) |