aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2015-09-28 01:18:42 -0700
committerRobert Yang <liezhi.yang@windriver.com>2015-09-29 00:45:11 -0700
commit9f9fbe68d6e48b626a31f7ed526b96c260994ccd (patch)
tree5f3e515a93575f2fba320d5060fc25e06b46446d
parentd5cf21179d9f8d3c053316b0864d72fc609f5423 (diff)
downloadopenembedded-core-contrib-rbt/python-async.tar.gz
python-async: inherit setuptoolsrbt/python-async
Fixed when bitbake nativesdk-python-async: DEBUG: Executing shell function do_compile Traceback (most recent call last): File "setup.py", line 2, in <module> from setuptools import setup ImportError: No module named setuptools Replace distutils with setuptools will fix the problem. Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-rw-r--r--meta/recipes-devtools/python/python-async_0.6.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-async_0.6.2.bb b/meta/recipes-devtools/python/python-async_0.6.2.bb
index 8ed0b0393f..5a17a1a004 100644
--- a/meta/recipes-devtools/python/python-async_0.6.2.bb
+++ b/meta/recipes-devtools/python/python-async_0.6.2.bb
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "ac6894d876e45878faae493b0cf61d0e28ec417334448ac0a6ea2229d8
S = "${WORKDIR}/async-${PV}"
-inherit distutils
+inherit setuptools
RDEPENDS_${PN} += "python-threading python-lang"