diff options
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index d107b0e48f2..178938920e1 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -2825,14 +2825,13 @@ sub runfonts { &SYSTEM("mkdir -p $DEST/fonts/tfm/$Foundry/$package"); $needdir=0; } - &SYSTEM("$MV $FileBase.tfm $DEST/fonts/tfm/$Foundry/$package "); + &SYSTEM("$MV $FileBase.tfm $DEST/fonts/tfm/$Foundry/$package"); } } -sub MAKEflatten -{ +sub MAKEflatten { # don't to this in a tds-ready tree... -e "$RAW_DIR/$packagedir/TDS_READY" && die "$0: using MAKEflatten with TDS_READY tree $RAW_DIR/$packagedir.\n"; @@ -3553,6 +3552,9 @@ sub MAKEwilson { next; } + # tgothic filenames conflict with ptex fonts. + next if $d eq "tgothic"; + my $target = "$docdir/$d"; next if ! -d $target; # samples/readme files print "\t PROCESS Wilson subdir $d\n"; @@ -3578,6 +3580,8 @@ sub MAKEwilson { # rebuild again, as we have .dvi files now &buildfilelist; &runfonts; + unlink ("$DEST/fonts/tfm/$Foundry/$package/auncl10.tfm", + "$DEST/fonts/tfm/$Foundry/$package/aunclb10.tfm"); &dobst; &dobib; &dotex; |