From 5c1d0b314aa2a9c801da935bdd3746757d5c6076 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Fri, 13 Aug 1999 20:48:32 +0000 Subject: [PATCH] Honor $PERL environment variable in Configure. Submitted by: Even Holen --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.25.1