diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2020-05-18 13:33:36 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-19 22:57:26 +0100 |
commit | 78d1faf939c76e39a6b239c877ac84cd5a2f97c5 (patch) | |
tree | 0bd87535ed41e6050086669ccf5a342c65234496 /meta | |
parent | 329c60041103ec6d82fcc389cea7896d4c455e3a (diff) | |
download | poky-78d1faf939c76e39a6b239c877ac84cd5a2f97c5.tar.gz |
python3-setuptools: add the missing rdepends
Add the missing rdepends to fix below error:
# python3
[snip]
>>> import setuptools.lib2to3_ex
[snip]
ModuleNotFoundError: No module named 'lib2to3'
ModuleNotFoundError: No module named 'pickle'
(From OE-Core rev: 24f3414b718d6edd218544e3b348f6f73053b625)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-setuptools.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-setuptools.inc b/meta/recipes-devtools/python/python-setuptools.inc index 6726e06bef..e9ad93dbee 100644 --- a/meta/recipes-devtools/python/python-setuptools.inc +++ b/meta/recipes-devtools/python/python-setuptools.inc | |||
@@ -18,6 +18,7 @@ SRC_URI[sha256sum] = "89c6e6011ec2f6d57d43a3f9296c4ef022c2cbf49bab26b407fe67992a | |||
18 | DEPENDS += "${PYTHON_PN}" | 18 | DEPENDS += "${PYTHON_PN}" |
19 | 19 | ||
20 | RDEPENDS_${PN} = "\ | 20 | RDEPENDS_${PN} = "\ |
21 | ${PYTHON_PN}-2to3 \ | ||
21 | ${PYTHON_PN}-compile \ | 22 | ${PYTHON_PN}-compile \ |
22 | ${PYTHON_PN}-compression \ | 23 | ${PYTHON_PN}-compression \ |
23 | ${PYTHON_PN}-ctypes \ | 24 | ${PYTHON_PN}-ctypes \ |
@@ -27,6 +28,7 @@ RDEPENDS_${PN} = "\ | |||
27 | ${PYTHON_PN}-json \ | 28 | ${PYTHON_PN}-json \ |
28 | ${PYTHON_PN}-netserver \ | 29 | ${PYTHON_PN}-netserver \ |
29 | ${PYTHON_PN}-numbers \ | 30 | ${PYTHON_PN}-numbers \ |
31 | ${PYTHON_PN}-pickle \ | ||
30 | ${PYTHON_PN}-pkgutil \ | 32 | ${PYTHON_PN}-pkgutil \ |
31 | ${PYTHON_PN}-plistlib \ | 33 | ${PYTHON_PN}-plistlib \ |
32 | ${PYTHON_PN}-shell \ | 34 | ${PYTHON_PN}-shell \ |