Honor $PERL environment variable in Configure.

Submitted by: Even Holen <Even.Holen@itea.ntnu.no>
This commit is contained in:
Ulf Möller 1999-08-13 20:48:32 +00:00
parent 2b7af70139
commit 5c1d0b314a

View File

@ -338,7 +338,7 @@ my $ranlib;
my $perl;
$ranlib=&which("ranlib") or $ranlib="true";
$perl=&which("perl5") or $perl=&which("perl") or $perl="perl";
$perl=$ENV{'PERL'} or &which("perl5") or $perl=&which("perl") or $perl="perl";
&usage if ($#ARGV < 0);