diff options
author | Karl Berry <karl@freefriends.org> | 2024-06-10 20:25:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-06-10 20:25:03 +0000 |
commit | 3ddc8c76f799d899022ca939dcee53d7469d11f4 (patch) | |
tree | b86fc22e75be0a8a8c7795ca87f1d236b4d59864 /Build/source/texk | |
parent | 48b3dac6579bd4c1d68f1aee50c2f08cab5c8024 (diff) |
citation-style-language (9jun24)
git-svn-id: svn://tug.org/texlive/trunk@71468 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/fmtutil.pl | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/fmtutil.pl b/Build/source/texk/texlive/linked_scripts/texlive/fmtutil.pl index d22b3350c28..aa677aa184b 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/fmtutil.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/fmtutil.pl @@ -1,9 +1,9 @@ #!/usr/bin/env perl -# $Id: fmtutil.pl 68962 2023-11-24 23:01:43Z karl $ +# $Id: fmtutil.pl 71424 2024-06-04 10:25:53Z preining $ # fmtutil - utility to maintain format files. # (Maintained in TeX Live:Master/texmf-dist/scripts/texlive.) # -# Copyright 2014-2023 Norbert Preining +# Copyright 2014-2024 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. # @@ -24,11 +24,11 @@ BEGIN { TeX::Update->import(); } -my $svnid = '$Id: fmtutil.pl 68962 2023-11-24 23:01:43Z karl $'; -my $lastchdate = '$Date: 2023-11-25 00:01:43 +0100 (Sat, 25 Nov 2023) $'; +my $svnid = '$Id: fmtutil.pl 71424 2024-06-04 10:25:53Z preining $'; +my $lastchdate = '$Date: 2024-06-04 12:25:53 +0200 (Tue, 04 Jun 2024) $'; $lastchdate =~ s/^\$Date:\s*//; $lastchdate =~ s/ \(.*$//; -my $svnrev = '$Revision: 68962 $'; +my $svnrev = '$Revision: 71424 $'; $svnrev =~ s/^\$Revision:\s*//; $svnrev =~ s/\s*\$$//; my $version = "r$svnrev ($lastchdate)"; @@ -450,6 +450,9 @@ sub callback_build_formats { # for MFBASES. $ENV{'TEXFORMATS'} ||= ""; $ENV{'TEXFORMATS'} = "$tmpdir$sep$ENV{TEXFORMATS}"; + # + # ensure that LC_ALL is set to C to guarantee luatex generating formats + $ENV{'LC_ALL'} = "C"; # switch to temporary directory for format generation; on the other hand, # for -n, the tmpdir won't exist, but we don't want to find a spurious |