Honor $PERL environment variable in Configure.
Submitted by: Even Holen <Even.Holen@itea.ntnu.no>
This commit is contained in:
parent
2b7af70139
commit
5c1d0b314a
@ -338,7 +338,7 @@ my $ranlib;
|
|||||||
my $perl;
|
my $perl;
|
||||||
|
|
||||||
$ranlib=&which("ranlib") or $ranlib="true";
|
$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);
|
&usage if ($#ARGV < 0);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user