summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorElie Roux <elie.roux@telecom-bretagne.eu>2013-04-20 16:29:53 +0200
committerElie Roux <elie.roux@telecom-bretagne.eu>2013-04-20 16:29:53 +0200
commitb1e675cbd171400ccc7a41a092a668215a8d8343 (patch)
treeac4c2807ac64a3405727d285b17c75ebcbebca48 /Makefile
parent0d3168d8b69d8eed835ff137cb24b6f83c2a28f6 (diff)
downloadluaotfload-b1e675cbd171400ccc7a41a092a668215a8d8343.tar.gz
Making make check work on my system
I cannot actually understand what was all the ENV thing for...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6606861..0a8770d 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,6 @@ TESTDIR = tests
TESTFILES = $(wildcard $(TESTDIR)/*.tex)
TESTFILES_SYS = $(TESTDIR)/systemfonts.tex $(TESTDIR)/fontconfig_conf_reading.tex
TESTFILES_TL = $(filter-out $(TESTFILES_SYS), $(TESTFILES))
-TESTENV = env TEXINPUTS='.;..;$$TEXMF/tex/{luatex,plain,generic,}//' TEXMFVAR='../var'
# Files grouped by installation location
SCRIPTFILES = $(SCRIPT)
@@ -95,9 +94,9 @@ install: $(ALL_FILES)
check: $(RUNFILES) $(TESTFILES_TL)
@rm -rf var
- @cd $(TESTDIR); for f in $(TESTFILES_TL); do \
+ @for f in $(TESTFILES_TL); do \
echo "check: luatex $$f"; \
- $(TESTENV) luatex --interaction=batchmode ../$$f \
+ luatex --interaction=batchmode $$f \
> /dev/null || exit $$?; \
done