diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index fa42d3040cc..da83affb056 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1319,6 +1319,7 @@ $standardbib = 'NULL'; # almost all bib files are for the doc # packages which have Metafont sources to run. $standardmf='[0-9]\.mf'; %specialmf= ( + 'asaetr', 'NULL', # cmcscsl10.mf conflict 'astro', 'astrosym.mf', 'backgammon', 'bg\.mf', 'cherokee', 'cherokee.mf', @@ -1349,7 +1350,9 @@ $standardmf='[0-9]\.mf'; ); # additional mf files to be installed but not run. +$standardmfinstall = '\.mf$'; %specialmfinstall = ( + 'asaetr' => 'NULL', # cmcscsl10.mf conflict 'astro' => 'astrosym.(cal|cmn|mac|uni|xtr)', 'cmcyr' => '\.mf', 'ibygrk' => 'ibycus4\.map', # tex|mf source @@ -1983,10 +1986,8 @@ sub domf { # # don't use $mfpatt since that's only the tfm-able mf files; just # install all the .mf files. - &install ($mfdir, '\.mf$'); - if (exists $specialmfinstall{$package}) { - &install ($mfdir, $specialmfinstall{$package}); - } + my $mf_inst_patt = $specialmfinstall{$package} || '\.mf$'; + &install ($mfdir, $mf_inst_patt); } sub rundvi { |