diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-10-10 13:18:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-15 14:16:10 +0100 |
commit | 7bd7af037f89bcf4145e5e8ee4683a3ce5dc33b0 (patch) | |
tree | 1eafe0a62bb0e8143c9540f3dff08477425ae8ab /meta/recipes-devtools | |
parent | 0aee3558f93956630613994e89a8a42a560d7766 (diff) | |
download | poky-7bd7af037f89bcf4145e5e8ee4683a3ce5dc33b0.tar.gz |
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.
(From OE-Core rev: 79ebbca6943bc66b619671f93ac283ed2cfc8e5c)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python/python3_3.7.4.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3_3.7.4.bb b/meta/recipes-devtools/python/python3_3.7.4.bb index 58e2fa5abf..09b942cf3a 100644 --- a/meta/recipes-devtools/python/python3_3.7.4.bb +++ b/meta/recipes-devtools/python/python3_3.7.4.bb | |||
@@ -102,6 +102,7 @@ do_configure_prepend () { | |||
102 | cat > ${B}/Modules/Setup.local << EOF | 102 | cat > ${B}/Modules/Setup.local << EOF |
103 | *disabled* | 103 | *disabled* |
104 | ${@bb.utils.contains('PACKAGECONFIG', 'gdbm', '', '_gdbm _dbm', d)} | 104 | ${@bb.utils.contains('PACKAGECONFIG', 'gdbm', '', '_gdbm _dbm', d)} |
105 | ${@bb.utils.contains('PACKAGECONFIG', 'readline', '', 'readline', d)} | ||
105 | EOF | 106 | EOF |
106 | } | 107 | } |
107 | 108 | ||