From 07c7bacd997e9f593602acf840c10e9585cf5657 Mon Sep 17 00:00:00 2001 From: Mingli Yu Date: Fri, 8 May 2020 11:00:33 +0800 Subject: 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 Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python-ptyprocess.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-python/recipes-devtools/python/python-ptyprocess.inc b/meta-python/recipes-devtools/python/python-ptyprocess.inc index 0cc911475..a6dc21cf1 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" -- cgit v1.2.3-54-g00ecf