[latex3-commits] [l3svn] 02/04: Fix build script for l3kernel
noreply at latex-project.org
noreply at latex-project.org
Sat May 27 17:09:08 CEST 2017
This is an automated email from the git hooks/post-receive script.
joseph pushed a commit to branch master
in repository l3svn.
commit 031a69e34fc7c45e407f9b9dd911e543fb82463c
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Sat May 27 16:04:34 2017 +0100
Fix build script for l3kernel
The issue here is that the recent relpath() -> abspath() change
was reflected in the main l3build.lua version of typeset() but
not in this modified version.
(Aside: Probably I should make the number of cycles a simple variable
as that's all that is modified here.)
---
l3kernel/build.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/l3kernel/build.lua b/l3kernel/build.lua
index c4545f9..26ffa1a 100644
--- a/l3kernel/build.lua
+++ b/l3kernel/build.lua
@@ -124,7 +124,7 @@ function typeset(file)
if errorlevel ~= 0 then
return errorlevel
else
- local name = stripext(file)
+ local name = stripext(basename(file))
errorlevel = biber(name) + bibtex(name)
if errorlevel == 0 then
local function cycle(name)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the latex3-commits
mailing list