diff options
author | Karl Berry <karl@freefriends.org> | 2008-11-07 01:22:49 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-11-07 01:22:49 +0000 |
commit | 3dd6d2ce5083791e0574668e2d2b76d32b248ed8 (patch) | |
tree | 3fc08ff582641658fd6da6925af1a255fb40645d /Master/tlpkg/bin/tlpkginfo | |
parent | be3631d25628ae81ce5039afc758db5ec49026ba (diff) |
xstring 1.4, and ignore its stale .tds.zip (4nov08)
git-svn-id: svn://tug.org/texlive/trunk@11208 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpkginfo')
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index 9aa0f34412e..4837adb819e 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -16,15 +16,16 @@ sub main || die "$0: TEX_CATALOGUE ($CATALOGUE) must point to entries/ subdir" . " of a TeX Catalogue checkout.\n"; + # erroneous tds files (warn Robin about them) + # list format: pkg1|pkg2|etc + $erroneous_tds = "bidi|elsarticle|lcyw|xetexfontinfo|xstring"; + # special packages from latex-tds project (used by prepare()) $corelatex_tds_pkgs = "babel|cyrillic|graphics|latex|psnfss|tools"; $amslatex_tds_pkgs = "ams|amsrefs|amsmath"; # for tlpsrc_find_catalogue() too $latex_tds_pkgs = "latex-tds|knuth||$amslatex_tds_pkgs|$corelatex_tds_pkgs"; $latex_tds_dir = "$CTAN/macros/latex/contrib/latex-tds"; - # erroneous tds files (warn Robin about them) - $erroneous_tds = "bidi|elsarticle|lcyw|xetexfontinfo"; # list format: pkg1|pkg2|etc - if ($ARGV[0] eq "--ctan-dir") { my $output = &find_ctan_dir ($ARGV[1]); print "$output\n"; |