mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
meta: Rename SITEINFO_ENDIANESS to SITEINFO_ENDIANNESS
There is this discrepency in spelling. Lets fix it in core. There are lot of layers using SITEINFO_ENDIANNESS This was shielded since meta-oe had its own copy of siteinfo class. But that class has now been deleted in favor of oe-core (From OE-Core rev: 54a54778fad39931ac7d43daaf37ce7c1946a29b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -86,9 +86,9 @@ def siteinfo_data(d):
|
||||
python () {
|
||||
sitedata = set(siteinfo_data(d))
|
||||
if "endian-little" in sitedata:
|
||||
d.setVar("SITEINFO_ENDIANESS", "le")
|
||||
d.setVar("SITEINFO_ENDIANNESS", "le")
|
||||
elif "endian-big" in sitedata:
|
||||
d.setVar("SITEINFO_ENDIANESS", "be")
|
||||
d.setVar("SITEINFO_ENDIANNESS", "be")
|
||||
else:
|
||||
bb.error("Unable to determine endianness for architecture '%s'" %
|
||||
d.getVar("HOST_ARCH", True))
|
||||
|
||||
Reference in New Issue
Block a user