Commit 5c1d0b31 authored by Ulf Möller's avatar Ulf Möller
Browse files

Honor $PERL environment variable in Configure.

Submitted by: Even Holen <Even.Holen@itea.ntnu.no>
parent 2b7af701
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);