aboutsummaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-02-07 18:22:15 +0000
committerBen Laurie <ben@openssl.org>1999-02-07 18:22:15 +0000
commit6457ad15a823e151d6a5899478ad425c84af7efc (patch)
tree8eeddfff7e4818a10e0412175693b87574e1dd45 /Configure
parent643aaa19793046ca9362da040038ab50003ca17a (diff)
downloadopenssl-6457ad15a823e151d6a5899478ad425c84af7efc.tar.gz
Minor tweaks to keep Perl 5.001 happy.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/Configure b/Configure
index 83d4196da4..c89306b583 100755
--- a/Configure
+++ b/Configure
@@ -599,7 +599,8 @@ sub bad_target
print STDERR "Usage: Configure [-Dxxx] [-Lxxx] [-lxxx] os/compiler\n";
print STDERR "pick os/compiler from:";
my $j=0;
- foreach my $i (sort keys %table)
+ my $i;
+ foreach $i (sort keys %table)
{
print STDERR "\n" if ($j++ % 4) == 0;
printf(STDERR "%-18s ",$i);
@@ -617,5 +618,5 @@ sub Rename
}
}
-sub file_new { local($a)=@_; $a =~ s/(\.[^.]+$|$)/.new/; $a; }
-sub file_old { local($a)=@_; $a =~ s/(\.[^.]+$|$)/.old/; $a; }
+sub file_new { my($a)=@_; $a =~ s/(\.[^.]+$|$)/.new/; $a; }
+sub file_old { my($a)=@_; $a =~ s/(\.[^.]+$|$)/.old/; $a; }