diff options
author | Karl Berry <karl@freefriends.org> | 2009-10-03 18:49:59 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-10-03 18:49:59 +0000 |
commit | b5d732b5920ac3f1cf3a2d53344c03d540559b4a (patch) | |
tree | 613f30a0dac4e461b24915c6f9c56dce749298b6 /Master/tlpkg/bin/tlpkginfo | |
parent | 9fb4054c488dbb42bf7d597e7a72bc916136b5af (diff) |
interim fmtcount update
git-svn-id: svn://tug.org/texlive/trunk@15620 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpkginfo')
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index eafdd7db2c8..8033c4e109c 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -18,7 +18,7 @@ sub main # erroneous tds files (warn Robin about them) or problematic (purifyeps). # list format: pkg1|pkg2|etc - $erroneous_tds = "purifyeps|thailatex|xetexref|xtab"; + $erroneous_tds = "fmtcount|purifyeps|thailatex|xetexref|xtab"; # special packages from latex-tds project (used by prepare()) $corelatex_tds_pkgs = "babel|cyrillic|graphics|latex|psnfss|tools"; @@ -250,10 +250,9 @@ sub prepare return undef unless $pkg; # find the real ctan dir and return it if our tds is erroneous - # (warn Robin Fairbairns about buggy tds zips) $do_copy = 1; # ask find_catalogue() to copy single files, too - my $ctan_loc = &find_ctan_dir ("$pkg"); - return $ctan_loc if ($pkg =~ /^($erroneous_tds)$/); + my $ctan_loc = &find_ctan_dir ($pkg); + return $ctan_loc if $pkg =~ /^($erroneous_tds)$/; # tds path is usually in ctan/install... my $tds_path = "$ctan_loc.tds.zip"; |