summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2018-07-23 19:38:51 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-29 15:23:50 +0100
commitb92d395febbbca2e5b33d4eed7628bf51d8e9a02 (patch)
treec6829bd029fe15cb14b26b1c3e0f7503a62bf7ed /meta/recipes-connectivity
parent6e18b05305e3a610fde10fddff70b35b8a5a8a05 (diff)
downloadpoky-b92d395febbbca2e5b33d4eed7628bf51d8e9a02.tar.gz
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-<cipher> config options is without a leading "-" https://github.com/openssl/openssl/blob/OpenSSL_1_0_2-stable/INSTALL (From OE-Core rev: 369927de1d94a295671d3750c95b70a497b13425) (From OE-Core rev: 3936fafb3bd85499361f32abef4919ad3c74d83f) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r--meta/recipes-connectivity/openssl/openssl_1.0.2o.bb2
1 files changed, 1 insertions, 1 deletions
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
71 71
72# Remove this to enable SSLv3. SSLv3 is defaulted to disabled due to the POODLE 72# Remove this to enable SSLv3. SSLv3 is defaulted to disabled due to the POODLE
73# vulnerability 73# vulnerability
74EXTRA_OECONF = "-no-ssl3" 74EXTRA_OECONF = "no-ssl3"
75 75
76export DIRS = "crypto ssl apps engines" 76export DIRS = "crypto ssl apps engines"
77export AS = "${CC} -c" 77export AS = "${CC} -c"