diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-10-28 07:43:30 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-28 07:50:38 +0900 |
commit | dfc1e36c0e6c4486fcb2db6bdafe4046de594e5e (patch) | |
tree | 1a8c7a07dca687dcca0b602839cb0917209be019 /Documentation | |
parent | eed9a4b0f2f6f51e2ff1e57c82e91baa40904680 (diff) | |
download | subsurface-dfc1e36c0e6c4486fcb2db6bdafe4046de594e5e.tar.gz |
Adjust asciidoc invocation to build latest manual
We shouldn't need to set the stylesdir - instead doing so makes us not
find the toc.css file.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 3df677723..a5f452f5c 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -31,8 +31,8 @@ $(OUT)%.pdf: %.txt $(OUT)%.html: %.txt @echo "if asciidoc isn't found the html file included in the sources is copied" - $(ASCIIDOC) -a toc -a toclevels=3 -a themedir=$(PWD) -a theme=$(THEME) -a stylesdir=$(PWD) \ - -o $@ $< || cp $(<:%.txt=%.html.git) $@ + $(ASCIIDOC) -a toc -a toclevels=3 -a themedir=$(PWD) -a theme=$(THEME) -o $@ $< || \ + cp $(<:%.txt=%.html.git) $@ # Alternatively:: $(OUT)$(DOCNAME).xhtml: $(DOCSOURCE) |