From: Lukas Bulwahn Date: Thu, 18 Apr 2013 05:40:11 +0000 (+0200) Subject: python-setuptools: Improving the runtime dependencies X-Git-Tag: 2015-4~6762 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c5de114f63fe3d60a48622ec5be8fa34ce177191;p=openembedded-core.git 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 Signed-off-by: Saul Wold --- 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 \ "