Package: latex-make
Version: 2.2.2-1
Severity: normal
Hi Vincent,
for using lualatex with LaTeX.mk a small fix is needed in LaTeX.mk:
- sed -e 's,\\openout[0-9]* = `\(.*\)'"'.,TD_$(1)$(4)_OUTPUTS += \1,p;d" \
+ sed -e 's,\\openout[0-9]* = \([^`].*\),TD_$(1)$(4)_OUTPUTS +=
\1,p;s,\\openout[0-9]* = `\(.*\)'"'.,TD_$(1)$(4)_OUTPUTS += \1,p;d" \
Compared with pdflatex, lualatex writes the \openout lines in the logfile
without quotes around the filename.
This needs lualatex from texlive in stretch/sid (beta-0.80.0), because
the lualatex in jessie (beta-0.79.1) does not emit \openout in the logfile
at all.
Thereafter I can use
PDFLATEX = lualatex
include LaTeX.mk
Andreas