Hi, I tested tetex-2.99.8. It works well on Vine Linux 2.6/3.1 (bases on redhat). Especially 'updmap' command doesn't execute needless 'texhash'. It fine. Thank you.
I noticed a small fix. On bash-2.05 it is ok, but on bash-2.05b 'updmap' outputs following message. > .... > updmap: Generating output for pdftex... > updmap: Generating output for dvipdfm... > updmap: All output generated! > > > updmap: Files generated: > /bin/ls: invalid option -- > Try `/bin/ls --help' for more information. Following patch fixes it (on bash-2.05 and bash-2.05b). It seems that bash handles 'IFS' in different way depending on its version. -- Thanks! Nobuyuki Tsuchimura --- updmap~ 2005-01-06 17:02:03.000000000 +0900 +++ updmap 2005-01-06 22:50:50.000000000 +0900 @@ -1239,9 +1239,9 @@ verboseMsg verboseMsg "$progname: Files generated:" - OLDIFS=$IFS; IFS=$newline + # OLDIFS=$IFS; IFS=$newline ls -l $outputFiles | verboseCat - IFS=$OLDIFS + # IFS=$OLDIFS verboseMsg verboseMsg "$progname: Map file links:"
