I'm following the "Install ConTeXt" instructions on http://levana.de/context/. I'm installing this on a Debian Testing machine. I've downloaded and installed version 2005.01.31. I just ran "texversion.pl" and get: kdp@yaz:~/Projects/ConTeXt$ ./texversion.pl Use of uninitialized value in string eq at /opt/context/2005.01.31/bin/texexec line 344. Use of uninitialized value in string eq at /opt/context/2005.01.31/bin/texexec line 348. Use of uninitialized value in string eq at /opt/context/2005.01.31/bin/texexec line 348. TeXVersion 0.1 / Taco Hoekwater 2004 texexec : TeXExec 5.2.4 - ConTeXt / PRAGMA ADE 1997-2005 texutil : TeXUtil 9.0.0 - ConTeXt / PRAGMA ADE 1992-2004 Use of uninitialized value in string eq at /opt/context/2005.01.31/bin/texexec line 344. Use of uninitialized value in string eq at /opt/context/2005.01.31/bin/texexec line 348. Use of uninitialized value in string eq at /opt/context/2005.01.31/bin/texexec line 348. tex : pdfeTeX, 3.14159-1.10b-2.1 (Web2C 7.4.5) context : ver: 2005.01.31 cont-en : ver: 2003.1.31 fmt: 2005.1.28 mes: english kdp@yaz:~/Projects/ConTeXt$ What am I missing? Dave P.S. kdp@yaz:~/$ echo $PATH /opt/context/2005.01.31/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games kdp@yaz:~/$ kdp@yaz:/etc/texmf$ grep CONTEXT texmf.cnf TEXMFCONTEXT = /opt/context/2005.01.31/texmf TEXMF = {$HOMETEXMF,!!$TEXMFLOCAL,!!$TEXMFOLDLOCAL,!!$VARTEXMF,!!$TEXMFCONTEXT,!!$TEXMFMAIN} kdp@yaz:/etc/texmf$ kdp
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
I dare! Thanks, Taco. -kdp On Thu, 3 Feb 2005, Taco Hoekwater wrote:
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
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
participants (2)
-
K. David Prince
-
Taco Hoekwater