diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index fd781c5e300..213001a9189 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -768,7 +768,6 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'pitthesis', "die 'skipping, noinfo license", 'pl', "die 'skipping, not ready, cf. cc-pl, sorry", 'pl-qx', "&MAKEplqx", - 'pmxchords', "die 'skipping, problematic musixtex scripts'", 'pointRuler', "die 'skipping, requires compilation'", 'poltawski', "&MAKEcopy", 'polyglossia-kannada', "die 'skipping, now in polyglossia proper'", @@ -1183,6 +1182,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'pgfplots' => '&POSTpgfplots', 'pict2e' => '&POSTpict2e', 'pmx' => '&POSTpmx', + 'pmxchords' => '&POST_do_man', 'prerex' => '&POSTprerex', 'pst-cox' => '&POSTpstcox', 'pst-geo' => '&POSTpstgeo', @@ -2469,6 +2469,7 @@ $standardxmt='\.xmt'; 'pkfix' => '\.pl$', 'pkfix-helper' => 'pkfix-helper$', 'pmx' => '\.lua$', + 'pmxchords' => 'pmxchords\.lua$', 'pst2pdf' => 'pst2pdf\.pl$', 'ptex2pdf' => 'ptex2pdf\.lua$', 'purifyeps' => 'purifyeps$', @@ -5678,6 +5679,8 @@ sub POST_do_man { $src_mandir = "$DEST/doc/man/man1"; } elsif (<$DEST/doc/*/$package/*.1>) { $src_mandir = "doc/*/$package"; + } elsif (<$DEST/doc/$package/*.1>) { + $src_mandir = "doc/$package"; } else { warn ("$0: could not find man pages starting from " . `pwd`); } |