diff options
author | Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de> | 2013-04-18 07:40:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-22 14:45:03 +0100 |
commit | 6dc9a7edaf27d0ca88165e34b1c968c6cd2329fa (patch) | |
tree | 19d241cfae993bed46337925083214ad16fb30b1 /meta | |
parent | ba807dc7fec24c230a23120127fc7e07cdcf7874 (diff) | |
download | poky-6dc9a7edaf27d0ca88165e34b1c968c6cd2329fa.tar.gz |
python-setuptools: Improving the runtime dependencies
When trying to import setuptools on a minimal image, it reports that some
python module is missing. We add those missing python modules as runtime
dependency.
(From OE-Core rev: c5de114f63fe3d60a48622ec5be8fa34ce177191)
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-setuptools_0.6c11.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-setuptools_0.6c11.bb b/meta/recipes-devtools/python/python-setuptools_0.6c11.bb index 8608104433..f09a312aec 100644 --- a/meta/recipes-devtools/python/python-setuptools_0.6c11.bb +++ b/meta/recipes-devtools/python/python-setuptools_0.6c11.bb | |||
@@ -23,6 +23,14 @@ do_install_prepend() { | |||
23 | } | 23 | } |
24 | 24 | ||
25 | RDEPENDS_${PN} = "\ | 25 | RDEPENDS_${PN} = "\ |
26 | python-stringold \ | ||
27 | python-email \ | ||
28 | python-shell \ | ||
29 | python-distutils \ | ||
30 | python-compression \ | ||
31 | " | ||
32 | |||
33 | RDEPENDS_${PN}_class-native = "\ | ||
26 | python-distutils \ | 34 | python-distutils \ |
27 | python-compression \ | 35 | python-compression \ |
28 | " | 36 | " |