From: Pauli Date: Thu, 22 Apr 2021 06:43:13 +0000 (+1000) Subject: Runchecker: fix failure with no-autoalginit option by disabling FIPS X-Git-Tag: openssl-3.0.0-alpha16~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c11e8ec1f20959a174b7a8a37da67eecf65d28b;p=thirdparty%2Fopenssl.git Runchecker: fix failure with no-autoalginit option by disabling FIPS With this option, the openssl command line tool is not created. Without that it is impossible to create the fipsmodule.cnf file that the tests would otherwise depend upon. Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/14979) --- diff --git a/Configure b/Configure index 613b48e7d9b..6d0ffbf4802 100755 --- a/Configure +++ b/Configure @@ -601,7 +601,7 @@ my @disable_cascades = ( "hw" => [ "padlockeng" ], # no-autoalginit is only useful when building non-shared - "autoalginit" => [ "shared", "apps" ], + "autoalginit" => [ "shared", "apps", "fips" ], "stdio" => [ "apps", "capieng", "egd" ], "apps" => [ "tests" ],