diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sanity.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 2d3f49eb1a..705062bc86 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -798,6 +798,11 @@ def check_sanity_everybuild(status, d): | |||
798 | elif d.getVar('SDK_ARCH', False) == "${BUILD_ARCH}": | 798 | elif d.getVar('SDK_ARCH', False) == "${BUILD_ARCH}": |
799 | 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') | 799 | 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') |
800 | 800 | ||
801 | # If SDK_VENDOR looks like "-my-sdk" then the triples are badly formed so fail early | ||
802 | sdkvendor = d.getVar("SDK_VENDOR") | ||
803 | if not (sdkvendor.startswith("-") and sdkvendor.count("-") == 1): | ||
804 | status.addresult("SDK_VENDOR should be of the form '-foosdk' with a single dash\n") | ||
805 | |||
801 | check_supported_distro(d) | 806 | check_supported_distro(d) |
802 | 807 | ||
803 | omask = os.umask(0o022) | 808 | omask = os.umask(0o022) |