commit | a5a47e4afbdc1cc1ec8c98f63cbc49705b8a6f4f | [log] [tgz] |
---|---|---|
author | Ulf Möller <ulf@openssl.org> | Fri Apr 09 16:25:25 1999 +0000 |
committer | Ulf Möller <ulf@openssl.org> | Fri Apr 09 16:25:25 1999 +0000 |
tree | 33d1c92f460daf9eac84d3dd5e59ee0d461e557d | |
parent | a8da89186c447932b9f5abced708330a3bff313b [diff] [blame] |
Use Perl 5 even if Perl 4 comes first in the search path.
diff --git a/Configure b/Configure index 5e78dd1..c586740 100755 --- a/Configure +++ b/Configure
@@ -731,7 +731,8 @@ { if (-x "$path/$name") { - return "$path/$name"; + return "$path/$name" unless ($name eq "perl" and + system("$path/$name -e " . '\'exit($]<5.0);\'')); } } }