* [PATCH] mulitilib_header: Avoid sstate checksum issues for -native recipes
@ 2013-02-14 11:20 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2013-02-14 11:20 UTC (permalink / raw)
To: openembedded-core
The use of arch specific variables like MIPSPKGSFX_ABI was creeping
into the -native sstate checksums of package like ncurses-native.
This is pointless and undesireable. We could add specific variable
exclusions but we might as well just brute force the code to be disabled
in the -native case since we don't use multilibs in the native case.
[YOCTO #3827]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/multilib_header.bbclass b/meta/classes/multilib_header.bbclass
index 639ed4b..4d049a8 100644
--- a/meta/classes/multilib_header.bbclass
+++ b/meta/classes/multilib_header.bbclass
@@ -39,3 +39,9 @@ oe_multilib_header() {
sed -e "s#ENTER_HEADER_FILENAME_HERE#${stem}#g" ${COREBASE}/scripts/multilib_header_wrapper.h > ${D}/${includedir}/$each_header
done
}
+
+# Dependencies on arch variables like MIPSPKGSFX_ABI can be problematic.
+# We don't need multilib headers for native builds so brute force things.
+oe_multilib_header_class-native () {
+ return
+}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-02-14 11:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-14 11:20 [PATCH] mulitilib_header: Avoid sstate checksum issues for -native recipes Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.