diff options
author | Erkka Kääriä <erkka.kaaria@intel.com> | 2015-09-15 15:34:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-18 09:05:28 +0100 |
commit | ec72426c829ac763a4f7ba5d2d54b3b5263eb69d (patch) | |
tree | 38f0dd28b709a9b50a5e9fa13b36a87cf0de955d /meta/recipes-devtools/python | |
parent | c170f35150031a141042eb61abaaab2e5bccad43 (diff) | |
download | poky-ec72426c829ac763a4f7ba5d2d54b3b5263eb69d.tar.gz |
python: Add python-misc as rdependency to python-modules
Currently python-misc is not included even if python-modules is. This means
some python scripts fail even if python-modules is included in the image
(for example, get-pip.py at bootrap.pypa.io/get-pip.py). This patch adds
python-misc as runtime dependency for python-modules.
(From OE-Core rev: 3273129552916659b2217e944eeaf8eb4c2ecf54)
Signed-off-by: Erkka Kääriä <erkka.kaaria@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python_2.7.9.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python_2.7.9.bb b/meta/recipes-devtools/python/python_2.7.9.bb index ae45577165..f7e2f272f4 100644 --- a/meta/recipes-devtools/python/python_2.7.9.bb +++ b/meta/recipes-devtools/python/python_2.7.9.bb | |||
@@ -161,7 +161,8 @@ FILES_${PN}-dbg += "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/.debug" | |||
161 | # catch all the rest (unsorted) | 161 | # catch all the rest (unsorted) |
162 | PACKAGES += "${PN}-misc" | 162 | PACKAGES += "${PN}-misc" |
163 | FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN}" | 163 | FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN}" |
164 | RDEPENDS_${PN}-ptest = "${PN}-modules ${PN}-misc" | 164 | RDEPENDS_${PN}-modules += "${PN}-misc" |
165 | RDEPENDS_${PN}-ptest = "${PN}-modules" | ||
165 | #inherit ptest after "require python-${PYTHON_MAJMIN}-manifest.inc" so PACKAGES doesn't get overwritten | 166 | #inherit ptest after "require python-${PYTHON_MAJMIN}-manifest.inc" so PACKAGES doesn't get overwritten |
166 | inherit ptest | 167 | inherit ptest |
167 | 168 | ||