diff options
author | Karl Berry <karl@freefriends.org> | 2020-01-09 22:33:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-01-09 22:33:25 +0000 |
commit | 22ebcdd884e3e65994dd1bc9a75274f510c32515 (patch) | |
tree | d50f001283c90ed90fa1de0ec4bede3ee3bd94b1 | |
parent | f3f16f605a5cf9e28f8caa4f2f8b59020654155d (diff) |
mktex*.exe also non-wrappers, updmap[-sys] now normal
git-svn-id: svn://tug.org/texlive/trunk@53358 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-check-wrapper-consistency | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/Master/tlpkg/bin/tl-check-wrapper-consistency b/Master/tlpkg/bin/tl-check-wrapper-consistency index c788da18b12..9ebdcbcc1ae 100755 --- a/Master/tlpkg/bin/tl-check-wrapper-consistency +++ b/Master/tlpkg/bin/tl-check-wrapper-consistency @@ -30,12 +30,7 @@ sub main { my $bindir = "$Master/bin"; chdir ($bindir) || die "chdir($bindir) failed: $!"; - my %w = &unx_wrapper_entries ("i386-linux"); - - # add some additional wrappers which are not found - # automatically since they are not .. symlinks on Unix. - $w{'updmap'} = 1; - $w{'updmap-sys'} = 1; + my %w = &unx_wrapper_entries ("x86_64-linux"); chomp (my $srcdir = `cd $Master/../Build/source/texk/texlive && pwd`); $cww = "$srcdir/w32_wrapper/runscript.exe"; @@ -79,10 +74,10 @@ sub unx_wrapper_entries { -# Windows is painfully special, as usual. Given the list of wrappers in -# UW, check that each of those entries (excluding shell scripts) exists -# in W32DIR as a .exe, and furthermore is a copy of the canonical w32 -# wrapper exe specified in W32CANONICAL. +# Windows is painfully special. Given the list of wrappers in UW, check +# that each of those entries (excluding shell scripts and other spceial +# cases) exists in W32DIR as a .exe, and furthermore is a copy of the +# canonical w32 wrapper exe specified in W32CANONICAL. # sub check_w32 { my ($w32dir, $w32canonical, %uw) = @_; @@ -93,8 +88,8 @@ sub check_w32 { next if $is_shell_script{$k}; # skip shell scripts # # also skip these special cases: - next if $k - =~ /^(epspdftk|latexindent|texdoctk|tlcockpit|tlmgr|tlshell|xasy)$/; + next if $k =~ + /^(epspdftk|latexindent|mktex.*|texdoctk|tlcockpit|tlmgr|tlshell|xasy)$/; # # else do the diff with the canonical wrapper: $diff += system ("cmp $w32dir/$k.exe $w32canonical"); |