Hi,
First let me say that with WW 1.9 you should definitely be using
typeset 2 mode (dvipng) and should set this as the default in Global.pm
(if you do, almost no one will use typeset mode and you can even remove
typeset mode if you wish). dvipng is very fast and there should be no
need to run precreation scripts (either l2hPrecreateSet.pl
or pngPrecreateSet.pl).
The bug you report is in the script precreate.pl. To fix this bug
edit .../webwork/system/scripts/precreate.pl changing lines 241-2 from:
$envir{'externalGif2EpsPath'} =
scriptDirectory.'gif2eps'; #compatible with previous standard of
storing this script in the scripts directory
$envir{'externalPng2EpsPath'} = scriptDirectory.'png2eps';
to
$envir{'externalGif2EpsPath'} =
$Global::scriptDirectory.'gif2eps'; #compatible with previous standard
of storing this script in the scripts directory
$envir{'externalPng2EpsPath'} = $Global::scriptDirectory.'png2eps';
That is add $Global:: in two places. Or you can grab a new copy of precreate.pl from the CVS.
Arnie
<| Post or View Comments |>
|