mirror of
https://git.yoctoproject.org/poky
synced 2026-04-16 15:32:13 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
6e18b05305
commit
b92d395feb
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user