summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-08-13 20:48:32 +0000
committerUlf Möller <ulf@openssl.org>1999-08-13 20:48:32 +0000
commit5c1d0b314aa2a9c801da935bdd3746757d5c6076 (patch)
treec4414482f5d38544a88667f874d06219f06c1e8c /Configure
parent2b7af70139076691e622dd64829adcae74d181ad (diff)
Honor $PERL environment variable in Configure.
Submitted by: Even Holen <Even.Holen@itea.ntnu.no>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 401b895944..d8dcf8f0a0 100755
--- a/Configure
+++ b/Configure
@@ -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);