From 3ebfc4903024f63a1626ddc3d3af782a914309e8 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Thu, 15 Dec 2016 21:49:12 -0700 Subject: [PATCH] buildtools-tarball: ignore TOOLCHAIN_TARGET_TASK_append 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 --- core/recipes-core/meta/buildtools-tarball.bbappend | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 core/recipes-core/meta/buildtools-tarball.bbappend diff --git a/core/recipes-core/meta/buildtools-tarball.bbappend b/core/recipes-core/meta/buildtools-tarball.bbappend new file mode 100644 index 0000000..be543d3 --- /dev/null +++ b/core/recipes-core/meta/buildtools-tarball.bbappend @@ -0,0 +1,6 @@ +# 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', '') +}