Files
poky/meta/classes-recipe/python3targetconfig.bbclass
Alexander Kanavin af4284d39d python3targetconfig.bbclass: use PYTHONPATH to point to the target config
There is no need to patch native python so that it looks in the target
sysroot; the same can be achieved with just an environment variable.

(From OE-Core rev: c9617c03bceee54dc540318cada392799b137bd5)

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-12-07 14:56:54 +00:00

42 lines
855 B
Plaintext

#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#
inherit python3native
EXTRA_PYTHON_DEPENDS ?= ""
EXTRA_PYTHON_DEPENDS:class-target = "python3"
DEPENDS:append = " ${EXTRA_PYTHON_DEPENDS}"
setup_target_config() {
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
export PYTHONPATH=${STAGING_LIBDIR}/python-sysconfigdata
export PATH=${STAGING_EXECPREFIXDIR}/python-target-config/:$PATH
}
do_configure:prepend:class-target() {
setup_target_config
}
do_compile:prepend:class-target() {
setup_target_config
}
do_install:prepend:class-target() {
setup_target_config
}
do_configure:prepend:class-nativesdk() {
setup_target_config
}
do_compile:prepend:class-nativesdk() {
setup_target_config
}
do_install:prepend:class-nativesdk() {
setup_target_config
}