From 300d0f892506fda9c4bfa706ebee2e1fc3cc4fb7 Mon Sep 17 00:00:00 2001 From: Holger Dengler Date: Sat, 28 Jul 2018 20:13:47 +0200 Subject: build: use xelatex as latex build-command Although the commandline of latexmk specifies xelatex as a sub-command, the commandline parameter "-pdf" enforces the usage of pdflatex instead. Without this parameter, latexmk correctly uses xelatex as latex build-command. Also add the additional, xelatex-specific, temporary files to the clean target and .gitignore. This fixes a bug in commit 44797f7be06e047c2ecd56189c5bb11e7edf854f, which implicitly changed from xelatex to pdflatex as latex build-command. Signed-off-by: Holger Dengler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6ab0303..7067096 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ DEFCONF_FOLDER := $(CURDIR)/configs BUILD_COMMAND := latexmk BUILD_SUBCMD := xelatex -BUILD_ARGS := -f -halt-on-error -$(BUILD_SUBCMD) -bibtex -pdf +BUILD_ARGS := -f -halt-on-error -$(BUILD_SUBCMD) -bibtex ifeq ($(BUILD_VERBOSE),0) BUILD_ARGS += --interaction=batchmode -silent else -- cgit v1.2.3