diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-25 17:35:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-25 17:35:18 +0000 |
commit | 9f12052d16a524fdfcdd1173fb4019d68c3016b6 (patch) | |
tree | 283aac60c8250cf9dbc730bf872868b35427701f /Master/tlpkg | |
parent | ca5c8c2594b507572fc761374aead47e4090cab9 (diff) |
lshort-portuguese 4.21
git-svn-id: svn://tug.org/texlive/trunk@18485 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index e56a2e91b5d..b0f36096dc7 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -478,7 +478,9 @@ sub do_tlp #warn "checking file $file\n"; # no point yet in comparing ours, we have generated too many. # revisit this someday to see how many of ours are actually different. - next if $file =~ /\.pdf$/; + # However, for lshort translations, the pdf is often the only thing + # we have to compare. + next if $file =~ /\.pdf$/ && $file !~ /short/; my $tl_file = "$Master/$file"; if (! -e $tl_file) { @@ -521,7 +523,8 @@ sub do_tlp if (@compared == 0) { warn "\n$tlpn: no files to compare in $ctan_dir, fixme!\n"; - warn "(tl_files = @tl_files)\n"; + warn " (tl_files = @tl_files)\n"; + warn " (ctan_files = @ctan_files)\n"; } elsif ($needed == 0) { print "ok\n" if $OPT{"verbose"}; } |