summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2020-05-08 11:00:33 +0800
committerKhem Raj <raj.khem@gmail.com>2020-05-08 19:56:05 -0700
commit07c7bacd997e9f593602acf840c10e9585cf5657 (patch)
treecd0be37b16c16793b93bd4676919b4ec94542316
parente65e8da5338ac71b7e5ca8b5a781978d4c319a34 (diff)
downloadmeta-openembedded-07c7bacd997e9f593602acf840c10e9585cf5657.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>
-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 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}"
15 15
16RDEPENDS_${PN} = "\ 16RDEPENDS_${PN} = "\
17 ${PYTHON_PN}-core \ 17 ${PYTHON_PN}-core \
18 ${PYTHON_PN}-fcntl \
19 ${PYTHON_PN}-terminal \
20 ${PYTHON_PN}-resource \
18" 21"
19 22
20BBCLASSEXTEND = "native nativesdk" 23BBCLASSEXTEND = "native nativesdk"