diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2020-05-08 11:00:33 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-05-08 19:56:05 -0700 |
commit | 07c7bacd997e9f593602acf840c10e9585cf5657 (patch) | |
tree | cd0be37b16c16793b93bd4676919b4ec94542316 | |
parent | e65e8da5338ac71b7e5ca8b5a781978d4c319a34 (diff) | |
download | meta-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.inc | 3 |
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 | ||
16 | RDEPENDS_${PN} = "\ | 16 | RDEPENDS_${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 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 23 | BBCLASSEXTEND = "native nativesdk" |