[tex-live] Bug report for updmap

Jean-Marc Bourguet jm at bourguet.org
Sun Jan 13 16:49:36 CET 2013


Hi,

`texdoc updmap` suggests sending bug report to tex-k at tug.org but the 
report I sent there bounced with an "user unknown" error.  If there is a 
better place to sent a problem report about updmap, please advice.

updmap as distributed by tex-live 2012 in bin/x86_64-linux/updmap has a 
typo.  In mkMaps function, line 1165 is terminated by a coma instead of 
a semicolon.  So

   my @psfonts_t1_map;
   if ($dvipsDownloadBase35 eq "true") {
     push @psfonts_t1_map, "% ps2pk35.map",
     @dftdvips_fonts = @ps2pk_fonts;
   } else {
     push @psfonts_t1_map, "% dvips35.map";
     @dftdvips_fonts =  @dvips35_fonts;
   }

should be instead

   my @psfonts_t1_map;
   if ($dvipsDownloadBase35 eq "true") {
     push @psfonts_t1_map, "% ps2pk35.map";
     @dftdvips_fonts = @ps2pk_fonts;
   } else {
     push @psfonts_t1_map, "% dvips35.map";
     @dftdvips_fonts =  @dvips35_fonts;
   }

The effect is that entries generated by transLW35 are preceded in 
psfonts_t1.map by an untransformed version and thus not taken into 
account when downloading the fonts.


Yours,

-- 
Jean-Marc Bourguet


More information about the tex-live mailing list