diff options
author | Karl Berry <karl@freefriends.org> | 2015-03-30 23:24:55 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-03-30 23:24:55 +0000 |
commit | e0860e5068cfd6454d368ff0b26a8c962bf29626 (patch) | |
tree | baa91d7c3dc2ced7c06e08143f6d4934cad150cf | |
parent | b7f95896ce301dbceea61c49abdfa85b2bdb42f9 (diff) |
don't worry about lollipop's btxmac.tex in tl.
git-svn-id: svn://tug.org/texlive/trunk@36683 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index c7ceed2afef..c7a73821714 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -847,8 +847,9 @@ sub do_tlp { # We install our own stub, not ConTeXt's. I guess. next if $basefile eq "mptopdf.exe"; - # Lowercase readme wrongly matched against uppercase README in musixtex. - next if $basefile eq "readme"; + # btxmac.tex symlinked on CTAN, but we may as well keep the copy + # actually used in lollipop in TL (doc tree). + next if $basefile eq "btxmac.tex" && $file =~ m,/lollipop/,; # Wrong README gets compared. next if $basefile eq "README" && $file =~ m,/(pmx|cs)/,; |