diff options
author | Ulf Möller <ulf@openssl.org> | 1999-08-13 23:02:25 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-08-13 23:02:25 +0200 |
commit | 0b7618888b2af3db2676da1b15da70631ccd248e (patch) | |
tree | dcc963c855e23d1328257c8830fb60073d900249 /Configure | |
parent | Honor $PERL environment variable in Configure. (diff) | |
download | openssl-0b7618888b2af3db2676da1b15da70631ccd248e.tar.xz openssl-0b7618888b2af3db2676da1b15da70631ccd248e.zip |
editing error.
Diffstat (limited to '')
-rwxr-xr-x | Configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -338,7 +338,8 @@ my $ranlib; my $perl; $ranlib=&which("ranlib") or $ranlib="true"; -$perl=$ENV{'PERL'} or &which("perl5") or $perl=&which("perl") or $perl="perl"; +$perl=$ENV{'PERL'} or $perl=&which("perl5") or $perl=&which("perl") + or $perl="perl"; &usage if ($#ARGV < 0); |