aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/cross.bbclass
diff options
context:
space:
mode:
authorPhil Blundell <pb-MHJFCCCcTeg@public.gmane.org>2013-05-21 11:40:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-24 14:07:03 +0100
commit66d09565783186ab14fa77ecdfe2131a44a265ab (patch)
tree721a2a9f23bc1430ee6e307caf1351064aca2d00 /meta/classes/cross.bbclass
parent28bb8fe5c144e02c28bff54b5b81c8da33b9f58b (diff)
downloadopenembedded-core-contrib-66d09565783186ab14fa77ecdfe2131a44a265ab.tar.gz
cross: Clear do_populate_sysroot[stamp-extra-info] so that stamps are not MACHINE specific
Otherwise we will try to run the setscene task once per MACHINE which will lead to file conflicts in the sysroot for packages like gcc-cross. The stamps are already namespaced by TARGET_ARCH which should be sufficient. Signed-off-by: Phil Blundell <philb-mXXj517/zsQ@public.gmane.org> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/cross.bbclass')
-rw-r--r--meta/classes/cross.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index b57e523465..eaba4d113c 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -55,6 +55,7 @@ libdir = "${exec_prefix}/lib/${CROSS_TARGET_SYS_DIR}"
libexecdir = "${exec_prefix}/libexec/${CROSS_TARGET_SYS_DIR}"
do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}/${STAGING_DIR_NATIVE}/"
+do_populate_sysroot[stamp-extra-info] = ""
python cross_virtclass_handler () {
if not isinstance(e, bb.event.RecipePreFinalise):