Hello,
 
I'm a beginner and I try to install context. I use MiKTeX. I read the minstall file and when I try to execute texexec I get the message :
 
C:\WINDOWS>texexec --make en
Missing $ on loop variable at C:\LOCALTEXMF\CONTEXT\PERLTK\TEXEXEC.pl line 788.
 
The line 788 of texexec.pl is :
 

      sub CheckOutputFormat

      { my $Ok = 1 ;

      if ($OutputFormat ne 'standard')

      { my @OutputFormat = split(/,/,$OutputFormat) ;

788   foreach my $F (@OutputFormat)

      { if (defined($OutputFormats{lc $F}))

      { my $OF = $OutputFormats{lc $F} ;

      next if (",$FullFormat," =~ /\,$OF\,/) ;

      if ($FullFormat) { $FullFormat .= "," }

      $FullFormat .= "$OutputFormats{lc $F}" }

      else

      { $Ok = 0 } }

      if (!$Ok)

      { print $Help{output} }

      elsif ($FullFormat)

      { print OPT "\\setupoutput[$FullFormat]\n" } }

      unless ($FullFormat)

      { $FullFormat = $OutputFormat } } # 'standard' to terminal

 

 

Is my texexec.pl correct??