diff options
author | Ross Burton <ross.burton@intel.com> | 2019-10-14 12:42:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-19 23:18:33 +0100 |
commit | 80739381b1998320e0a44a3d5bfdf08ac73b3a05 (patch) | |
tree | c1a338db6f19d898d985681763c653889ffdb44f | |
parent | 3bdce139ffc9a79018ff4f4584e719dc5d8a2cea (diff) | |
download | poky-80739381b1998320e0a44a3d5bfdf08ac73b3a05.tar.gz |
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>
-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) |