summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-09-05 20:05:25 +0000
committerKarl Berry <karl@freefriends.org>2023-09-05 20:05:25 +0000
commite5ae57ce1defb65931a4dbe4a43b9f15a3440ab5 (patch)
tree886e85aa1d38681741a9a3bfd0781bbca18e4911 /Build
parent90b8a6f489a730ada3083c57469226436f5518ac (diff)
l3build (5sep23)
git-svn-id: svn://tug.org/texlive/trunk@68181 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/texlive/linked_scripts/l3build/l3build.lua13
1 files changed, 12 insertions, 1 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua b/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
index ffabdcc4b0d..66f50e96419 100644
--- a/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
+++ b/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
@@ -25,7 +25,7 @@ for those people who are interested.
--]]
-- Version information
-release_date = "2023-07-20"
+release_date = "2023-09-05"
-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
@@ -117,6 +117,17 @@ if options["epoch"] then
forcedocepoch = true
end
epoch = normalise_epoch(epoch)
+-- LuaTeX needs the `-utc` option
+if next(specialformats) and next(specialformats.latex)
+ and next (specialformats.latex.luatex) then
+ local options = specialformats.latex.luatex.options
+ specialformats.latex.luatex.options = (options and (options .. " ") or "") .. "-utc"
+end
+if next(specialformats) and next(specialformats["latex-dev"])
+ and next (specialformats["latex-dev"].luatex) then
+ local options = specialformats["latex-dev"].luatex.options
+ specialformats["latex-dev"].luatex.options = (options and (options .. " ") or "") .. "-utc"
+end
--
-- Deal with multiple configs for tests