From: Andre McCurdy Date: Tue, 24 Jul 2018 02:38:51 +0000 (-0700) Subject: openssl_1.0: drop leading "-" from no-ssl3 config option X-Git-Tag: uninative-2.3~884 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=369927de1d94a295671d3750c95b70a497b13425;p=openembedded-core.git openssl_1.0: drop leading "-" from no-ssl3 config option Although passing -no-ssl3 works, comments in the openssl Configure script suggest doing so isn't really correct: s /^-no-/no-/; # some people just can't read the instructions The documented way to pass no- config options is without a leading "-" https://github.com/openssl/openssl/blob/OpenSSL_1_0_2-stable/INSTALL Signed-off-by: Andre McCurdy Signed-off-by: Ross Burton --- diff --git a/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb b/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb index d9e9c8408e..58627b0b3e 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb @@ -71,7 +71,7 @@ PACKAGECONFIG[cryptodev-linux] = "-DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS,,cryp # Remove this to enable SSLv3. SSLv3 is defaulted to disabled due to the POODLE # vulnerability -EXTRA_OECONF = "-no-ssl3" +EXTRA_OECONF = "no-ssl3" export DIRS = "crypto ssl apps engines" export AS = "${CC} -c"