diff options
author | Karl Berry <karl@freefriends.org> | 2008-11-20 14:38:17 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-11-20 14:38:17 +0000 |
commit | 2ef1581f8d9e92ff91fb3bf3907af849c01c86bc (patch) | |
tree | 0325ad4dc6721dbbd10b74539278ef8f4b4c1b93 /Master/tlpkg/bin/tlpkginfo | |
parent | 1316410621c62ccec1c334c2bdd8ee663db5b014 (diff) |
defend against uninitialized msgs with a broken tlpdb
git-svn-id: svn://tug.org/texlive/trunk@11373 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpkginfo')
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index 48784ec4e53..629b5e5f6bf 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -18,7 +18,7 @@ sub main # erroneous tds files (warn Robin about them) # list format: pkg1|pkg2|etc - $erroneous_tds = "bidi|elsarticle|lcyw|xetexfontinfo"; + $erroneous_tds = "bidi|elsarticle"; # special packages from latex-tds project (used by prepare()) $corelatex_tds_pkgs = "babel|cyrillic|graphics|latex|psnfss|tools"; @@ -130,16 +130,17 @@ sub find_ctan_dir $ctan_dir = "info/impatient/fr" if $me eq "impatient-fr"; $ctan_dir = "info/italian/amsldoc" if $me eq "amsldoc-it"; $ctan_dir = "info/italian/amsthdoc" if $me eq "amsthdoc-it"; + $ctan_dir = "info/l2tabu/italian" if $me eq "l2tabu-it"; + $ctan_dir = "info/lshort/chinese" if $me eq "lshort-chinese"; $ctan_dir = "info/tex-references" if $me eq "tex-refs"; $ctan_dir = "info/translations/vn" if $me eq "ntheorem-vn"; $ctan_dir = "language/armenian/armtex" if $me eq "armenian"; $ctan_dir = "language/basque" if $me eq "hyphen-basque"; $ctan_dir = "language/hungarian/babel" if $me eq "magyar"; - $ctan_dir = "language/hyphenation/elhyphen" if $me eq "hyphen-greek"; $ctan_dir = "language/hyphenation/dehyph" if $me eq "hyphen-german"; - $ctan_dir = "macros/latex/contrib/misc" if $me eq "ltxmisc"; + $ctan_dir = "language/hyphenation/elhyphen" if $me eq "hyphen-greek"; $ctan_dir = "macros/generic" if $me eq "genmisc"; - $ctan_dir = "info/lshort/chinese" if $me eq "lshort-chinese"; + $ctan_dir = "macros/latex/contrib/misc" if $me eq "ltxmisc"; # do last, for sake of subdirs above. $ctan_dir = "language/hyphenation" |