aboutsummaryrefslogtreecommitdiffstats
path: root/meta-boot2qt-distro/recipes-devtools/python/python3_%.bbappend
blob: b3a5eb7efd5aa3b89358de7e48f357331f259483 (plain)
1
2
3
4
5
6
7
8
9
10
11
SRC_URI_remove = "file://python-3.3-multilib.patch"

# We need to install the python3 binary into the sysroot to let qtivi install that binary
# into the correct location.
# We can't install it directly into ${bindir} as this would be picked up by other recipes
# and produce a lot of errors. Instead put it inside a qt5 folder where only qtivi picks it up
# This is a workaround and needs to be replaced by a proper solution discussed here:
# https://bugreports.qt.io/browse/AUTOSUITE-176
sysroot_stage_all_append_class-nativesdk () {
    sysroot_stage_dir ${D}${bindir} ${SYSROOT_DESTDIR}${bindir}/qt5
}