mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-18 21:22:18 +02:00
buildtools-tarball is host only, and does not add TOOLCHAIN_TARGET_TASK to RDEPENDS. Forcibly empty it, otherwise a TOOLCHAIN_TARGET_TASK_append at the config level will break the buildtools-tarball build JIRA: SB-8391 Signed-off-by: Christopher Larson <chris_larson@mentor.com>
7 lines
267 B
Plaintext
7 lines
267 B
Plaintext
# buildtools-tarball is host only, and does not add TOOLCHAIN_TARGET_TASK to
|
|
# RDEPENDS. Forcibly empty it, otherwise a TOOLCHAIN_TARGET_TASK_append at the
|
|
# config level will break the buildtools-tarball build
|
|
python () {
|
|
d.setVar('TOOLCHAIN_TARGET_TASK', '')
|
|
}
|