diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-07-23 19:38:51 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-26 13:16:41 +0100 |
commit | 1d7a9db53f619c3c5acf9084eca3ee1c179c660d (patch) | |
tree | 40965b1b8e4195608a2a37b19ef7e9682d2b1ccd | |
parent | 474076a826f1d4bc0f9b485e1e5e9c305283d439 (diff) | |
download | poky-1d7a9db53f619c3c5acf9084eca3ee1c179c660d.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)
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>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.0.2o.bb | 2 |
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 |
74 | EXTRA_OECONF = "-no-ssl3" | 74 | EXTRA_OECONF = "no-ssl3" |
75 | 75 | ||
76 | export DIRS = "crypto ssl apps engines" | 76 | export DIRS = "crypto ssl apps engines" |
77 | export AS = "${CC} -c" | 77 | export AS = "${CC} -c" |