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:43:42 +0100 |
commit | c5de114f63fe3d60a48622ec5be8fa34ce177191 (patch) | |
tree | cb2a77762ed9747a7b5ca17927a5d34fb2ecc275 /meta/recipes-devtools | |
parent | a0643812b05cf7ed8b6f530f81925f60089c2410 (diff) | |
download | openembedded-core-c5de114f63fe3d60a48622ec5be8fa34ce177191.tar.gz openembedded-core-c5de114f63fe3d60a48622ec5be8fa34ce177191.tar.bz2 openembedded-core-c5de114f63fe3d60a48622ec5be8fa34ce177191.zip |
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.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-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() { } RDEPENDS_${PN} = "\ + python-stringold \ + python-email \ + python-shell \ + python-distutils \ + python-compression \ +" + +RDEPENDS_${PN}_class-native = "\ python-distutils \ python-compression \ " |