summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-03-15 20:17:30 +0000
committerKarl Berry <karl@freefriends.org>2022-03-15 20:17:30 +0000
commit300beb37bc9690ff8ca394cf811651e3be672f66 (patch)
treef5ad963966bda367c0206f8a53e4c2b0049e2a2a /Master/texmf-dist/scripts
parent9f7eacb1e2f4a1d9c46145c000621e1939fa85ce (diff)
latex-dev (15mar22) (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2021.final@62726 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r--Master/texmf-dist/scripts/l3build/l3build-check.lua2
-rwxr-xr-xMaster/texmf-dist/scripts/l3build/l3build.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-check.lua b/Master/texmf-dist/scripts/l3build/l3build-check.lua
index 65ac2222717..f016c25a62b 100644
--- a/Master/texmf-dist/scripts/l3build/l3build-check.lua
+++ b/Master/texmf-dist/scripts/l3build/l3build-check.lua
@@ -147,7 +147,7 @@ local function normalize_log(content,engine,errlevels)
-- Images
line = gsub(line, "<" .. pattern .. ">", "<../%1>")
-- luaotfload files start with keywords
- line = gsub(line, "from " .. pattern .. "%(", "from. ./%1(")
+ line = gsub(line, "from " .. pattern .. "$", "from ../%1")
line = gsub(line, ": " .. pattern .. "%)", ": ../%1)")
-- Deal with XeTeX specials
if match(line, "^%.+\\XeTeX.?.?.?file") then
diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua
index 744f7628b8c..80a7b6e3d01 100755
--- a/Master/texmf-dist/scripts/l3build/l3build.lua
+++ b/Master/texmf-dist/scripts/l3build/l3build.lua
@@ -25,7 +25,7 @@ for those people who are interested.
--]]
-- Version information
-release_date = "2022-02-24"
+release_date = "2022-03-15"
-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
@@ -134,7 +134,7 @@ else
end
if #checkconfigs > 1 then
- if options["target"] == "check" then
+ if options["target"] == "check" or options["target"] == "bundlecheck" then
local errorlevel = 0
local failed = { }
for i = 1, #checkconfigs do