diff options
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/ctan2tds | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/ctan2tds b/Master/tlpkg/bin/ctan2tds index a15d9b2ca49..61ba8ad65af 100755 --- a/Master/tlpkg/bin/ctan2tds +++ b/Master/tlpkg/bin/ctan2tds @@ -1198,9 +1198,10 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot' . '|\.bbl|\.blg|\.idx|\.ind|\.ilg|\.glo|\.gls|\.loa'; %specialclean = ( 'a2ping' => 'README', # not worth whole separate doc subdir + 'achemso' => "$standardclean|jawltxdoc.sty", # temp file for doc 'acmconf' => "$standardclean|flushend.sty", # dup with sttools 'gentle' => 'gentle.ps.gz', # pdf is enough - 'latex2e-help-texinfo' => '\.info', # must move .info by hand,sigh + 'latex2e-help-texinfo' => '\.info', # must move .info by hand, sigh 'lshort-spanish'=>'lshort-a5book.pdf', # a4 is enough 'mathexam' => 'sample.tex~', 'mh' => "$standardclean|.*\.(drv|ins)", # dtx-derived @@ -1538,13 +1539,13 @@ sub dodvi # move the runtime files sub dotex { - warn "specialtex{$package} = $specialtex{$package}, $specialtex{zefonts}\n"; my $texpatt = $specialtex{$package} || $standardtex; &install("$DEST/tex/$whichformat/$package", $texpatt); } # move the makeindex runtime files -sub domakeindex { +sub domakeindex +{ $makeindexpatt = $specialmakeindex{$package}; if ($makeindexpatt eq "") { $makeindexpatt=$standardmakeindex; } &install("$DEST/makeindex/$package",$makeindexpatt); |