From: Alexander Kanavin Date: Mon, 11 Oct 2021 09:40:44 +0000 (+0200) Subject: ruby: disable openssl extension X-Git-Tag: yocto-4.0~2057 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a477de350eaf7095745db81fb03e7ab20188f5a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ruby: disable openssl extension It is incompatible with openssl 3 in currently released versions, and given very marginal use of ruby in oe, I do not think not having it matters. Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/ruby/ruby.inc b/meta/recipes-devtools/ruby/ruby.inc index c953a270424..2b5caf35f56 100644 --- a/meta/recipes-devtools/ruby/ruby.inc +++ b/meta/recipes-devtools/ruby/ruby.inc @@ -37,3 +37,8 @@ do_configure:prepend() { sed -i "s#%%TARGET_CFLAGS%%#$CFLAGS#; s#%%TARGET_LDFLAGS%%#$LDFLAGS#" ${S}/common.mk rm -rf ${S}/ruby/ } + +# Disable openssl extension until it becomes compatible with openssl 3 +do_configure:prepend() { + rm -rf ${S}/ext/openssl/extconf.rb +}