diff options
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python-six_1.9.0.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-six_1.9.0.bb b/meta-python/recipes-devtools/python/python-six_1.9.0.bb index aa96dc9a82..c6575f3860 100644 --- a/meta-python/recipes-devtools/python/python-six_1.9.0.bb +++ b/meta-python/recipes-devtools/python/python-six_1.9.0.bb | |||
@@ -6,3 +6,11 @@ SRC_URI[md5sum] = "476881ef4012262dfc8adc645ee786c4" | |||
6 | SRC_URI[sha256sum] = "e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5" | 6 | SRC_URI[sha256sum] = "e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5" |
7 | 7 | ||
8 | inherit pypi | 8 | inherit pypi |
9 | |||
10 | do_compile_append() { | ||
11 | export BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} | ||
12 | ${PYTHON} setup.py -q bdist_egg --dist-dir ./ | ||
13 | } | ||
14 | do_install_append() { | ||
15 | install -m 0644 ${S}/*.egg ${D}/${PYTHON_SITEPACKAGES_DIR}/ | ||
16 | } | ||