[latex3-commits] [l3svn] 02/02: l3build: Normalise out .fd files

noreply at latex-project.org noreply at latex-project.org
Sat Sep 5 16:25:41 CEST 2015


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

commit 181ce023ff225012acb050a9d9f34125da56e8bb
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Sat Sep 5 15:25:14 2015 +0100

    l3build: Normalise out .fd files
    
    This is needed for testing babel but has really been outstanding
    for a while!
---
 l3build/l3build.lua |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 9d5d135..020dbab 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -722,6 +722,11 @@ function formatlog(logfile, newfile, engine)
     end
     -- Zap map loading of map
     line = string.gsub(line, "%{[%w/%-]*/pdftex%.map%}", "")
+    -- Merge all of .fd data into one line so will be removed later
+    if string.match(line, "^%([%w]+%.fd[^%)]*$") then
+      lastline = (lastline or "") .. line
+      return ""
+    end
     -- TeX90/XeTeX knows only the smaller set of dimension units
     line = string.gsub(
         line, "cm, mm, dd, cc, bp, or sp", "cm, mm, dd, cc, nd, nc, bp, or sp"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list