diff options
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 4 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 77989c5a5c1..76a24b15e0e 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -31,7 +31,7 @@ my @TLP_working = qw( ae aeguill afthesis aguplus aiaa aichej akletter alg algorithm2e algorithmicx algorithms alnumsec alterqcm - altfont ametsoc amsaddr amsfonts amslatex-primer amsldoc-it + altfont ametsoc amsaddr amscls amsfonts amslatex-primer amsldoc-it amsmath amsrefs amstex amsthdoc-it animate anonchap antt answers ANUfinalexam anyfontsize anysize apa apacite apalike apalike2 appendix apl apprends-latex @@ -361,8 +361,6 @@ my @TLP_working = qw( my @TLP_no_check = ( "afm2pl", # not on CTAN "aleph", # binary - "amscls", # ams confused - "amstex", # ams confused "asymptote", # binary "bibtex", # binary "bibtex8", # binary diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index 2b3b6aaa44f..877894d194d 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -317,6 +317,7 @@ sub prepare chomp (my @dirlist = `find */*/* -type d | sort -u`); for my $dir (@dirlist) { next if $dir =~ m!$pkg$!; # keep matching directories + next if $pkg eq "amscls" && $dir =~ m,bst/ams$,; # ams{alpha,plain}.bst push (@deldir, $dir); } system ("rm -rf @deldir"); # discard the rest |