mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
sanity: check the format of SDK_VENDOR
If SDK_VENDOR isn't formatted as -foosdk and is instead for example -foo-sdk then the triple that are constructed are not in fact triples, which results in mysterious compile errors. Check in sanity.bbclass so this failure is detected early. [ YOCTO #13573 ] (From OE-Core rev: b0efd8d4d0dbc30e6505b42f5603f18fa764d732) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3bdce139ff
commit
80739381b1
@@ -798,6 +798,11 @@ def check_sanity_everybuild(status, d):
|
||||
elif d.getVar('SDK_ARCH', False) == "${BUILD_ARCH}":
|
||||
status.addresult('SDKMACHINE is set, but SDK_ARCH has not been changed as a result - SDKMACHINE may have been set too late (e.g. in the distro configuration)\n')
|
||||
|
||||
# If SDK_VENDOR looks like "-my-sdk" then the triples are badly formed so fail early
|
||||
sdkvendor = d.getVar("SDK_VENDOR")
|
||||
if not (sdkvendor.startswith("-") and sdkvendor.count("-") == 1):
|
||||
status.addresult("SDK_VENDOR should be of the form '-foosdk' with a single dash\n")
|
||||
|
||||
check_supported_distro(d)
|
||||
|
||||
omask = os.umask(0o022)
|
||||
|
||||
Reference in New Issue
Block a user