From 7a477de350eaf7095745db81fb03e7ab20188f5a Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Mon, 11 Oct 2021 11:40:44 +0200 Subject: [PATCH] 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 --- meta/recipes-devtools/ruby/ruby.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meta/recipes-devtools/ruby/ruby.inc b/meta/recipes-devtools/ruby/ruby.inc index c953a27042..2b5caf35f5 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 +} -- 2.40.1