diff options
author | Richard Levitte <levitte@openssl.org> | 2015-12-02 18:54:15 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-12-02 19:39:36 +0100 |
commit | 16b6081e0d96be87fa53b9932c7c589d7ad9edab (patch) | |
tree | 0f4e8543a0da2f73edafe50986a7405cc12bd042 /Configure | |
parent | Remove RSA_FLAG_SIGN_VER flag. (diff) | |
download | openssl-16b6081e0d96be87fa53b9932c7c589d7ad9edab.tar.xz openssl-16b6081e0d96be87fa53b9932c7c589d7ad9edab.zip |
Fix ./Configure reconf
'./Configure reconf' hasn't been working for a while, because a perl
lable needs to be immediately followed by a block.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -952,6 +952,7 @@ while($argv_unprocessed) $argvstring=join(' ',@argvcopy); PROCESS_ARGS: + { my %unsupported_options = (); foreach (@argvcopy) { @@ -1148,7 +1149,7 @@ PROCESS_ARGS: join(", ", keys %unsupported_options), "\n"; } } - + } if ($processor eq "386") |