summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tlpkginfo
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin/tlpkginfo')
-rwxr-xr-xMaster/tlpkg/bin/tlpkginfo7
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";