[tex-live] Bug and patch for updmap.pl

Aaron Chen nextaaron at gmail.com
Fri Oct 17 10:22:24 CEST 2008


Hi,

I find this bug when trying to use ADOBEkb instead of URWkb in updmap.pl.
Basically, current updmap.pl in bin-tetex treats all values as true or false
while LW35 takes URW, URWkb, ADOBE, and ADOBEkb. Such an exception
should be taken care of.

The patch is given as below.
--- updmap.pl	Wed Jul 02 02:18:44 2008
+++ updmap.pl	Fri Oct 17 01:04:00 2008
@@ -467,7 +467,7 @@
       if ($value =~ m/^(true|yes|t|y|1)$/) {
 	$value = 1;
       }
-      else {
+      elsif ($value =~ m/^(false|no|f|n|0)$/) {
 	$value = 0;
       }
       last;

Although I don't think it makes any difference, my system is Vista win32.

Aaron



More information about the tex-live mailing list