From: Ulf Möller Date: Fri, 13 Aug 1999 20:48:32 +0000 (+0000) Subject: Honor $PERL environment variable in Configure. X-Git-Tag: OpenSSL_0_9_5beta1~577 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5c1d0b314aa2a9c801da935bdd3746757d5c6076;p=oweals%2Fopenssl.git Honor $PERL environment variable in Configure. Submitted by: Even Holen --- 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);