summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/guider
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-01-19 16:33:15 -0800
committerKhem Raj <raj.khem@gmail.com>2020-01-22 09:56:34 -0800
commit505774658338002a92c2e32c4c57c55f36c5e36e (patch)
treec5d1032aac37af7493141cdfa56da5b371ce5a59 /meta-oe/recipes-devtools/guider
parent66454b26ff49c6cca3dd8d32832078cfa05cd5ef (diff)
downloadmeta-openembedded-505774658338002a92c2e32c4c57c55f36c5e36e.tar.gz
meta-oe: Remove using python2
This change makes the parsing go though, we still might have build issues, which will be reported in world builds seprately Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/guider')
-rw-r--r--meta-oe/recipes-devtools/guider/guider_3.9.6.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
index 0057db661c..c8ddb15080 100644
--- a/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
+++ b/meta-oe/recipes-devtools/guider/guider_3.9.6.bb
@@ -16,7 +16,7 @@ SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
16S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
17R = "${RECIPE_SYSROOT}" 17R = "${RECIPE_SYSROOT}"
18 18
19inherit distutils 19inherit distutils3
20 20
21GUIDER_OBJ = "guider.pyc" 21GUIDER_OBJ = "guider.pyc"
22GUIDER_SCRIPT = "guider" 22GUIDER_SCRIPT = "guider"
@@ -31,5 +31,5 @@ do_install() {
31 install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ} 31 install -v -m 0755 ${STAGING_LIBDIR_NATIVE}/python${PYTHON_BASEVERSION}/site-packages/${BPN}/${GUIDER_OBJ} ${D}${datadir}/${BPN}/${GUIDER_OBJ}
32} 32}
33 33
34RDEPENDS_${PN} = "python-ctypes python-shell \ 34RDEPENDS_${PN} = "python3-ctypes python3-shell \
35 python-json python-subprocess" 35 python3-json python3-subprocess"