[latex3-commits] [git/LaTeX3-latex3-l3build] main: Fix normalization pattern for luaotfload font cache (#224) (8b2d4ed)

GitHub noreply at github.com
Tue Mar 15 15:24:00 CET 2022


Repository : https://github.com/latex3/l3build
On branch  : main
Link       : https://github.com/latex3/l3build/commit/8b2d4ed03e61563579972caa5dc3684864f7d25c

>---------------------------------------------------------------

commit 8b2d4ed03e61563579972caa5dc3684864f7d25c
Author: Marcel Krüger <tex at 2krueger.de>
Date:   Tue Mar 15 15:24:00 2022 +0100

    Fix normalization pattern for luaotfload font cache (#224)


>---------------------------------------------------------------

8b2d4ed03e61563579972caa5dc3684864f7d25c
 CHANGELOG.md      | 1 +
 l3build-check.lua | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 218b54b..8b19656 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -32,6 +32,7 @@ this project uses date-based 'snapshot' version identifiers.
 
 ### Fixed
 - Use correct name for `options` table in multi configuration management code
+- Correctly normalize luaotfload font cache path
 
 ## [2021-12-09]
 
diff --git a/l3build-check.lua b/l3build-check.lua
index 65ac222..f016c25 100644
--- a/l3build-check.lua
+++ b/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





More information about the latex3-commits mailing list.