Re: mptopdf Problem
Thomas Esser <[email protected]>
| Newsgroups | gmane.comp.tex.tetex.beta |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Jun 29, 2004 at 08:58:14PM +0200, Hartmut Henkel wrote:
> hahe@hahepc1:~$ mptopdf xx.mp
..
> pdfetex: unrecognized option `-efmt=mptopdf'
The -efmt option was removed. All engines now use -fmt. The names of the
format files now all have the suffix .fmt (no longer .efmt), so Context
needs to be fixed:
$ grep -r efmt scripts/
scripts/context/perl/mptopdf.pl:# { $command = "pdfetex -progname=pdfetex -efmt=mptopdf" }
scripts/context/perl/mptopdf.pl: { $command = "pdfetex -progname=context -efmt=mptopdf" }
scripts/context/perl/texexec.pl: my $efmt = `$kpsewhich cont-en.efmt` ;
scripts/context/perl/texexec.pl: chomp $efmt ;
scripts/context/perl/texexec.pl: if ($efmt eq "") {
scripts/context/perl/texexec.pl:# if ((-f "$tree/web2c/cont-en.efmt")||
scripts/context/perl/texexec.pl:# (-f "$tree/web2c/cont-nl.efmt"))
Thomas