Here's the part from epoc32\tools\e32env.pm that produces the error message:
code:-------------------------------------------------------------------------------- open PIPE, "set EPOCROOT |";
my $found=0;
while (<PIPE>) {
if (/^EPOCROOT=.*/)
{
$found=1;
last;
}
}
close PIPE;
die "EPOCROOT environment variable must be capitalised\n" if (!$found);--------------------------------------------------------------------------------
Basically all it checks that the EPOCROOT environment variable name as printed out by the "set EPOCROOT" command appears exactly as "EPOCROOT" and not as "epocroot" for example. (It already has checked for the existence of the variable before checking the capitalisation.)
Lauri
*******************************************************************