From 4a4413aa521f35414d94f883a74aec3beb628a9a Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Wed, 24 Jun 2020 23:13:26 +0300 Subject: python3: un-break disabling the readline PACKAGECONFIG Previously the readline module would have been built regardless of readline's presence in the sysroot, and the recipe would fail at package_qa. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie Signed-off-by: Anuj Mittal --- meta/recipes-devtools/python/python3_3.7.7.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/python/python3_3.7.7.bb b/meta/recipes-devtools/python/python3_3.7.7.bb index be67c81d7c..4d2578c817 100644 --- a/meta/recipes-devtools/python/python3_3.7.7.bb +++ b/meta/recipes-devtools/python/python3_3.7.7.bb @@ -107,6 +107,7 @@ do_configure_prepend () { cat > ${B}/Modules/Setup.local << EOF *disabled* ${@bb.utils.contains('PACKAGECONFIG', 'gdbm', '', '_gdbm _dbm', d)} +${@bb.utils.contains('PACKAGECONFIG', 'readline', '', 'readline', d)} EOF } -- cgit 1.2.3-korg