Skip to content

Commit

Permalink
l3build (7sep23)
Browse files Browse the repository at this point in the history
git-svn-id: svn://tug.org/texlive/trunk/Build/source@68198 c570f23f-e606-0410-a88d-b1316a301751
  • Loading branch information
kberry committed Sep 7, 2023
1 parent b9959ea commit 0290571
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions 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-09-05"
release_date = "2023-09-07"

-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
Expand Down Expand Up @@ -118,15 +118,22 @@ if options["epoch"] then
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"
if forcecheckepoch then
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
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"
if forcedocepoch then
if match(typesetexe,"luatex") or match(typesetexe,"lualatex") then
typesetopts = typsetopts .. " -utc"
end
end

--
Expand Down

0 comments on commit 0290571

Please sign in to comment.