diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2020-05-07 15:48:08 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-05-07 17:56:23 -0700 |
commit | 580ec1e925e07484b46e76f2e7ee09d9b40c19e5 (patch) | |
tree | 67b9b1324166eb69b02cfea3a851648036af9e94 /meta-python/recipes-devtools/python | |
parent | 0568dda628fa086aaedfa164c6b12654e09972a3 (diff) | |
download | meta-openembedded-580ec1e925e07484b46e76f2e7ee09d9b40c19e5.tar.gz |
python3-pid: add the missing rdepends
Add the missing rdepends to fix below error:
# python3
[snip]
>>> import pid
[snip]
ModuleNotFoundError: No module named 'fcntl'
ModuleNotFoundError: No module named 'logging'
ModuleNotFoundError: No module named 'tempfile'
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pid_2.2.5.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pid_2.2.5.bb b/meta-python/recipes-devtools/python/python3-pid_2.2.5.bb index b8dd0d7474..ef19478885 100644 --- a/meta-python/recipes-devtools/python/python3-pid_2.2.5.bb +++ b/meta-python/recipes-devtools/python/python3-pid_2.2.5.bb | |||
@@ -8,3 +8,5 @@ SRC_URI[md5sum] = "ad352ee1dc28b9746a15451c0c53e9d7" | |||
8 | SRC_URI[sha256sum] = "96eb7dba326b88f5164bc1afdc986c7793e0d32d7f62366256a3903c7b0614ef" | 8 | SRC_URI[sha256sum] = "96eb7dba326b88f5164bc1afdc986c7793e0d32d7f62366256a3903c7b0614ef" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | |||
12 | RDEPENDS_${PN} += "${PYTHON_PN}-fcntl ${PYTHON_PN}-logging ${PYTHON_PN}-io" | ||