summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2016-05-26 11:14:14 +0800
committerJeremy Kerr <jk@ozlabs.org>2016-05-26 11:14:14 +0800
commitdd1b5c0e303831f077731a8a6f3120e8137b03c0 (patch)
tree63e781512a5942e394a76c049dbce870dab6f87d /Makefile
parent8b80cb60799d090235172a7102f93625f3f255b9 (diff)
downloadopenbmc-docs-dd1b5c0e303831f077731a8a6f3120e8137b03c0.tar.gz
openbmc-docs-dd1b5c0e303831f077731a8a6f3120e8137b03c0.zip
userguide: don't run tex in interactive mode
... as it doesn't behave well with CI builds. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 02ea525..9e5cfa7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,14 @@
# we need xelatex for utf-8 support
tex = xelatex
+tflags = -interaction=nonstopmode -halt-on-error
all: userguide.pdf
.PHONY: all clean
userguide.pdf: userguide/userguide.tex
- $(tex) $^
+ $(tex) $(tflags) $^
userguide/userguide.tex: rest-api.tex host-management.tex console.tex code-update.tex
OpenPOWER on IntegriCloud