mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 03:33:02 +01:00
Where there isn't a copyright statement, add one to make it explicit. Also drop editor config lines where they were present. (From OE-Core rev: 880c1ea3edc8edef974e65b2d424fc36809ea034) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
784 B
Plaintext
34 lines
784 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
|
|
inherit python3native
|
|
|
|
EXTRA_PYTHON_DEPENDS ?= ""
|
|
EXTRA_PYTHON_DEPENDS:class-target = "python3"
|
|
DEPENDS:append = " ${EXTRA_PYTHON_DEPENDS}"
|
|
|
|
do_configure:prepend:class-target() {
|
|
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
|
|
}
|
|
|
|
do_compile:prepend:class-target() {
|
|
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
|
|
}
|
|
|
|
do_install:prepend:class-target() {
|
|
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
|
|
}
|
|
|
|
do_configure:prepend:class-nativesdk() {
|
|
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
|
|
}
|
|
|
|
do_compile:prepend:class-nativesdk() {
|
|
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
|
|
}
|
|
|
|
do_install:prepend:class-nativesdk() {
|
|
export _PYTHON_SYSCONFIGDATA_NAME="_sysconfigdata"
|
|
}
|