Skip to content

Commit

Permalink
l3build (5sep23)
Browse files Browse the repository at this point in the history
git-svn-id: svn://tug.org/texlive/trunk/Build/source@68181 c570f23f-e606-0410-a88d-b1316a301751
  • Loading branch information
kberry committed Sep 5, 2023
1 parent 6dea070 commit b9959ea
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion texk/texlive/linked_scripts/l3build/l3build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b9959ea

Please sign in to comment.