summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-01-10 09:13:14 +0100
committerRichard Levitte <levitte@openssl.org>2021-01-12 11:25:54 +0100
commit5e16ac142e812864e01c6c534888d4efaca6d9bf (patch)
treee764b68e6bf38431c8a84abf2f67ef2c4575b756 /Configure
parent507f83800fe9c85c6249e9baad4602075df2b5b7 (diff)
downloadopenssl-new-5e16ac142e812864e01c6c534888d4efaca6d9bf.tar.gz
Configure: clean away perl syntax faults
The faults aren't fatal (i.e. perl just shrugs), but are curious. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13824)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index 72829cd583..87267e2a26 100755
--- a/Configure
+++ b/Configure
@@ -2260,7 +2260,7 @@ EOF
push @{$check_exist{$s}}, $ddest;
my $o = $_;
$o =~ s/\.rc$/.res/; # Resource configuration
- my $o = cleanfile($buildd, $o, $blddir);
+ $o = cleanfile($buildd, $o, $blddir);
$unified_info{sources}->{$ddest}->{$o} = -1;
$unified_info{sources}->{$o}->{$s} = -1;
} else {
@@ -2296,7 +2296,7 @@ EOF
push @{$check_exist{$s}}, $ddest;
my $o = $_;
$o =~ s/\.rc$/.res/; # Resource configuration
- my $o = cleanfile($buildd, $o, $blddir);
+ $o = cleanfile($buildd, $o, $blddir);
$unified_info{shared_sources}->{$ddest}->{$o} = -1;
$unified_info{sources}->{$o}->{$s} = -1;
} elsif ($s =~ /\.ld$/) {