When trying to install packages using python-setuptools, compilation may fail complaining about the py_compile module not existing, this presented itself when installing pyephem for example, this patch adds python-compile to setuptools RDEPENDS to fix the issue.
[YOCTO 9009] Signed-off-by: Alejandro Hernandez <[email protected]> --- meta/recipes-devtools/python/python-setuptools_19.4.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/python/python-setuptools_19.4.bb b/meta/recipes-devtools/python/python-setuptools_19.4.bb index 86bbebf..c172039 100644 --- a/meta/recipes-devtools/python/python-setuptools_19.4.bb +++ b/meta/recipes-devtools/python/python-setuptools_19.4.bb @@ -23,6 +23,7 @@ RDEPENDS_${PN} = "\ python-ctypes \ python-subprocess \ python-unittest \ + python-compile \ " RDEPENDS_${PN}_class-native = "\ -- 2.6.2 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
