summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2019-09-05 09:54:58 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-07 07:47:24 +0100
commit4349b933ad82c205611d95b9b10c02e5181a6031 (patch)
tree9c24361a95c8dec2fc51c30ab8b87d855ed69f35 /meta
parentd7a16809f61a1d9a5b22ee3041a598ddb613de58 (diff)
downloadpoky-4349b933ad82c205611d95b9b10c02e5181a6031.tar.gz
python3: make misc package rdepend on pydoc and pickle modules
The cgitb module in misc package requires pydoc. And the trace module in misc package requires pickle. (From OE-Core rev: f7f04c4436f414ab1e57e7fc93349ac77ecf37be) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/python/python3_3.7.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3_3.7.4.bb b/meta/recipes-devtools/python/python3_3.7.4.bb
index 80c9b2919e..14119c33f9 100644
--- a/meta/recipes-devtools/python/python3_3.7.4.bb
+++ b/meta/recipes-devtools/python/python3_3.7.4.bb
@@ -310,7 +310,7 @@ INSANE_SKIP_${PN}-dev += "dev-elf"
310 310
311# catch all the rest (unsorted) 311# catch all the rest (unsorted)
312PACKAGES += "${PN}-misc" 312PACKAGES += "${PN}-misc"
313RDEPENDS_${PN}-misc += "python3-core python3-email python3-codecs" 313RDEPENDS_${PN}-misc += "python3-core python3-email python3-codecs python3-pydoc python3-pickle"
314RDEPENDS_${PN}-modules_append_class-target = " python3-misc" 314RDEPENDS_${PN}-modules_append_class-target = " python3-misc"
315RDEPENDS_${PN}-modules_append_class-nativesdk = " python3-misc" 315RDEPENDS_${PN}-modules_append_class-nativesdk = " python3-misc"
316FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" 316FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload"