aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2020-05-08 11:00:33 +0800
committerArmin Kuster <akuster808@gmail.com>2020-05-17 14:38:03 -0700
commit4cee153f598f4bc5fd2e1982a99b8c8937131e4e (patch)
treecaaca0c8c5e4506d85f351fdcb03ff5d58864f05 /meta-python
parent691e34f773214083acd5fc8d39a99229be624353 (diff)
downloadmeta-openembedded-4cee153f598f4bc5fd2e1982a99b8c8937131e4e.tar.gz
python3-ptyprocess: add the missing rdepends
Add the missing rdepends to fix below error: # python3 [snip] >>> import ptyprocess [snip] ModuleNotFoundError: No module named 'fcntl' ModuleNotFoundError: No module named 'pty' ModuleNotFoundError: No module named 'resource' Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 07c7bacd997e9f593602acf840c10e9585cf5657) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-devtools/python/python-ptyprocess.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-ptyprocess.inc b/meta-python/recipes-devtools/python/python-ptyprocess.inc
index 0cc9114754..a6dc21cf11 100644
--- a/meta-python/recipes-devtools/python/python-ptyprocess.inc
+++ b/meta-python/recipes-devtools/python/python-ptyprocess.inc
@@ -15,6 +15,9 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
RDEPENDS_${PN} = "\
${PYTHON_PN}-core \
+ ${PYTHON_PN}-fcntl \
+ ${PYTHON_PN}-terminal \
+ ${PYTHON_PN}-resource \
"
BBCLASSEXTEND = "native nativesdk"