diff options
author | Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de> | 2013-04-04 14:12:57 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-04 14:04:42 +0100 |
commit | 88f446661b7b211045d42f012f49630cb19f0842 (patch) | |
tree | 5dc466087a6eba1eb088fcd3c8cefe542fcd99e6 /meta | |
parent | b5f842a8ad697f7d62aa287a7e560c89574935ca (diff) | |
download | poky-88f446661b7b211045d42f012f49630cb19f0842.tar.gz |
python: adding missing runtime dependency python-io to python-pprint
When trying to import python-pprint on a minimal image, it reports that
the cStringIO python module is missing.
This is provided with python-io, so we add python-io as runtime
dependency.
The complete observed trace was:
Python 2.7.3 (default, Apr 4 2013, 07:45:36)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pprint
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/pprint.py", line 40, in <module>
from cStringIO import StringIO as _StringIO
ImportError: No module named cStringIO
(From OE-Core rev: abe7bf9992e298f1b53e790eee7b064a9e4e8589)
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-2.7-manifest.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-2.7-manifest.inc b/meta/recipes-devtools/python/python-2.7-manifest.inc index 84e5a0b912..fb44905798 100644 --- a/meta/recipes-devtools/python/python-2.7-manifest.inc +++ b/meta/recipes-devtools/python/python-2.7-manifest.inc | |||
@@ -175,7 +175,7 @@ RDEPENDS_${PN}-pkgutil="${PN}-core" | |||
175 | FILES_${PN}-pkgutil="${libdir}/python2.7/pkgutil.* " | 175 | FILES_${PN}-pkgutil="${libdir}/python2.7/pkgutil.* " |
176 | 176 | ||
177 | DESCRIPTION_${PN}-pprint="Python Pretty-Print Support" | 177 | DESCRIPTION_${PN}-pprint="Python Pretty-Print Support" |
178 | RDEPENDS_${PN}-pprint="${PN}-core" | 178 | RDEPENDS_${PN}-pprint="${PN}-core ${PN}-io" |
179 | FILES_${PN}-pprint="${libdir}/python2.7/pprint.* " | 179 | FILES_${PN}-pprint="${libdir}/python2.7/pprint.* " |
180 | 180 | ||
181 | DESCRIPTION_${PN}-profile="Python Basic Profiling Support" | 181 | DESCRIPTION_${PN}-profile="Python Basic Profiling Support" |