summaryrefslogtreecommitdiffstats
path: root/Documentation/Makefile
diff options
context:
space:
mode:
authorGravatar Thiago Macieira <thiago@macieira.org>2014-02-24 16:36:23 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-25 15:30:38 -0800
commit3318aefa464103f3966e773b3af9898a87c5e441 (patch)
treede7e154890b1819b18f588a071b474a81d04d3cf /Documentation/Makefile
parent67a1e3f3e0d18cd78c1e88471fbf664560f6bebb (diff)
downloadsubsurface-3318aefa464103f3966e773b3af9898a87c5e441.tar.gz
Make sure the user-manual.html output always ends up in $(OUT)
If you're doing a non-local build, it would get saved in the source dir. Then qmake would complain that it couldn't find it in the target dir. Signed-off-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r--Documentation/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index c3ae22e02..204aeb8e8 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -29,7 +29,7 @@ $(OUT)$(DOCNAME).pdf: $(DOCSOURCE)
$(OUT)$(HTMLDOC): $(DOCSOURCE)
@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 $(HTMLDOC) $< || cp $(HTMLDOC).git $(HTMLDOC)
+ -o $(OUT)$(HTMLDOC) $< || cp $(HTMLDOC).git $(OUT)$(HTMLDOC)
# Alternatively::
$(OUT)$(DOCNAME).xhtml: $(DOCSOURCE)