[latex3-commits] [git/LaTeX3-latex3-l3build] main: More cautious setup of specialformats (8ad245f)
Joseph Wright
joseph.wright at morningstar2.co.uk
Tue Dec 14 07:26:08 CET 2021
Repository : https://github.com/latex3/l3build
On branch : main
Link : https://github.com/latex3/l3build/commit/8ad245f9ee177c8ad79946ec1ef4563e361758e4
>---------------------------------------------------------------
commit 8ad245f9ee177c8ad79946ec1ef4563e361758e4
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Tue Dec 14 06:26:08 2021 +0000
More cautious setup of specialformats
>---------------------------------------------------------------
8ad245f9ee177c8ad79946ec1ef4563e361758e4
l3build-variables.lua | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/l3build-variables.lua b/l3build-variables.lua
index ffabf34..736df6a 100644
--- a/l3build-variables.lua
+++ b/l3build-variables.lua
@@ -121,11 +121,13 @@ specialformats.context = specialformats.context or {
pdftex = {binary = "texexec", format = ""},
xetex = {binary = "texexec", format = "", options = "--xetex"}
}
-specialformats.latex = specialformats.latex or {
- etex = {format = "latex"},
- ptex = {binary = "eptex"},
- uptex = {binary = "euptex"}
- }
+specialformats.latex = specialformats.latex or { }
+specialformats.latex.etex = specialformats.latex.etex or
+ {format = "latex"}
+specialformats.latex.ptex = specialformats.latex.ptex or
+ {binary = "eptex"}
+specialformats.latex.uptex = specialformats.latex.uptex or
+ {binary = "euptex"}
if not string.find(status.banner,"2019") then
specialformats.latex.luatex = specialformats.latex.luatex or
{binary = "luahbtex",format = "lualatex"}
More information about the latex3-commits
mailing list.