diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-23 20:54:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-23 20:54:54 +0000 |
commit | c0d692f7e2ef04f93644baf4630910819cf91bb6 (patch) | |
tree | 1c3e53a571b8ef2169d68c93398ec07172fcac3a /Master/tlpkg/bin/check-wrapper-consistency | |
parent | add0e452a3c85211749724326106f3d5b94d60ec (diff) |
tl-update-images: also generate tarballs; check-wrapper*: exclude context check
git-svn-id: svn://tug.org/texlive/trunk@8956 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/check-wrapper-consistency')
-rwxr-xr-x | Master/tlpkg/bin/check-wrapper-consistency | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency index 97c566a6721..10082236f31 100755 --- a/Master/tlpkg/bin/check-wrapper-consistency +++ b/Master/tlpkg/bin/check-wrapper-consistency @@ -100,10 +100,11 @@ sub check_w32 for my $k (sort keys %uw) { #print "$k -> $uw{$k}\n"; my $target = $uw{$k}; - next if $target =~ /tex4ht/; # tex4ht elements have their own .bat's - next if $target =~ /ps4pdf/; # has its own .bat + next if $k eq /context/; # has its own .cmd file next if $target =~ /dviasm|ebong/; # no .bat for python + next if $target =~ /ps4pdf/; # has its own .bat next if $target =~ /simpdftex/; # shell script + next if $target =~ /tex4ht/; # tex4ht has its own .bat's $diff += system ("cmp $w32dir/$k.bat $w32canonical"); } |