diff options
Diffstat (limited to 'Master/tlpkg/bin/check-wrapper-consistency')
-rwxr-xr-x | Master/tlpkg/bin/check-wrapper-consistency | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency index 32587003358..989016f3ced 100755 --- a/Master/tlpkg/bin/check-wrapper-consistency +++ b/Master/tlpkg/bin/check-wrapper-consistency @@ -85,8 +85,9 @@ sub unx_wrapper_entries # Windows is special, as usual. Given the list of wrappers in UW, check -# that each of those entries exists in W32DIR as a .exe, and is a copy -# of the canonical w32 wrapper specified in W32CANONICAL. +# that each of those entries (excluding various exceptions) exists in +# W32DIR as a .exe, and is a copy of the canonical w32 wrapper exe +# specified in W32CANONICAL. # sub check_w32 { @@ -100,6 +101,7 @@ sub check_w32 next if $target =~ /dviout/; # gui stub next if $target =~ /listings-ext/; # shell script next if $target =~ /man/; # no symlink + next if $target =~ /pdfjam/; # shell scripts next if $target =~ /psv/; # gui stub next if $target =~ /simpdftex/; # shell script next if $target =~ /texmfstart/; # has its own binary |