diff options
author | Matt Caswell <matt@openssl.org> | 2020-11-24 17:45:48 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-11-27 18:32:03 +0100 |
commit | b8fa02e8a4a4a9c274aafdb4fc834ba051301afb (patch) | |
tree | 3998db7c34ff41dffc40b331833f25c93fa0af58 /Configure | |
parent | X509_dup: fix copying of libctx and propq using new ASN1_OP_DUP_POST cb opera... (diff) | |
download | openssl-b8fa02e8a4a4a9c274aafdb4fc834ba051301afb.tar.xz openssl-b8fa02e8a4a4a9c274aafdb4fc834ba051301afb.zip |
Fix no-engine
If we specify no-engine then this should cascade to also mean
no-dynamic-engine. The store test was only checking whether
dynamic-engine was disabled, meaning that some tests were failing
in a no-engine build.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13502)
Diffstat (limited to '')
-rwxr-xr-x | Configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -581,7 +581,7 @@ my @disable_cascades = ( "module" => [ "fips", "dso" ], - "engine" => [ grep /eng$/, @disablables ], + "engine" => [ "dynamic-engine", grep(/eng$/, @disablables) ], "hw" => [ "padlockeng" ], # no-autoalginit is only useful when building non-shared |