3 Feb
2005
3 Feb
'05
3:18 p.m.
K. David Prince wrote:
What am I missing?
Dave
Your system is fine, so no worries. Those warning lines are annoying but harmless. They'll be fixed in the next release, but in the mean time, you can change lines 344 and 348 of texexec.pl yourself, if you dare: $ diff texexec.pl.old texexec.pl 344c344 < if ($ENV{openin_any} eq 'p') { ---
if (defined $ENV{openin_any} && $ENV{openin_any} eq 'p') { 348c348,349 < if (($ENV{shell_escape} eq 'f') || ($ENV{SHELL_ESCAPE} eq 'f')) {
if ((defined $ENV{shell_escape} && $ENV{shell_escape} eq 'f') || (defined $ENV{SHELL_ESCAPE} && $ENV{SHELL_ESCAPE} eq 'f')) {
Greetings, Taco