diff options
author | Richard Levitte <levitte@openssl.org> | 2020-07-02 00:08:45 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-07-03 09:12:07 +0200 |
commit | ea4ee152a7aa022dd87f193cc6e16a7ffbfb455a (patch) | |
tree | 4f1b51ce6cd33f86f7badf3743cb85750d5bd7c1 /Configure | |
parent | Fix up build issue when running cpp tests (diff) | |
download | openssl-ea4ee152a7aa022dd87f193cc6e16a7ffbfb455a.tar.xz openssl-ea4ee152a7aa022dd87f193cc6e16a7ffbfb455a.zip |
Configure: fix handling of build.info attributes with value
This line wasn't properly handled:
SCRIPTS{misc,linkname=tsget}=tsget.pl
It generated an attribute "linkname=tsget" with the value 1, instead of
what it should have, an attribute "linkname" with the value "tsget".
Fixes #12341
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12344)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1978,10 +1978,10 @@ if ($builder eq "unified") { my $ac = 1; my $ak = $a; my $av = 1; - if ($a =~ m|^(!)?(.*?)\s* = \s*(.*?)$|) { + if ($a =~ m|^(!)?(.*?)\s* = \s*(.*?)$|x) { $ac = ! $1; - $ak = $1; - $av = $2; + $ak = $2; + $av = $3; } foreach my $g (@goals) { if ($ac) { |