diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-12-18 14:14:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:40:06 +0000 |
commit | 4bedd149964b3b594d7b1a233a9cc436925288e9 (patch) | |
tree | b76c2f4bc82ef648c851f651ab50ace2bf34fa85 /meta/classes/sanity.bbclass | |
parent | d03e399623b9320268a2b56e4928bb7effa9146c (diff) | |
download | openembedded-core-4bedd149964b3b594d7b1a233a9cc436925288e9.tar.gz openembedded-core-4bedd149964b3b594d7b1a233a9cc436925288e9.tar.bz2 openembedded-core-4bedd149964b3b594d7b1a233a9cc436925288e9.zip |
sanity.bbclass: add more information to error message about TUNE_PKGARCH missing in PACKAGE_ARCHS
* sometimes it's hard to see what's wrong here
* error message:
Error, the PACKAGE_ARCHS variable does not contain TUNE_PKGARCH (cortexa7t2hfhf-vfp-vfpv4-neon).
doesn't help much to understand what exactly went wrong and where
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index ad9dda878a..9f35558af8 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -329,6 +329,7 @@ def check_sanity_validmachine(sanity_data): # Check that we don't have duplicate entries in PACKAGE_ARCHS & that TUNE_PKGARCH is in PACKAGE_ARCHS pkgarchs = sanity_data.getVar('PACKAGE_ARCHS', True) tunepkg = sanity_data.getVar('TUNE_PKGARCH', True) + defaulttune = sanity_data.getVar('DEFAULTTUNE', True) tunefound = False seen = {} dups = [] @@ -345,7 +346,7 @@ def check_sanity_validmachine(sanity_data): messages = messages + "Error, the PACKAGE_ARCHS variable contains duplicates. The following archs are listed more than once: %s" % " ".join(dups) if tunefound == False: - messages = messages + "Error, the PACKAGE_ARCHS variable does not contain TUNE_PKGARCH (%s)." % tunepkg + messages = messages + "Error, the PACKAGE_ARCHS variable (%s) for DEFAULTTUNE (%s) does not contain TUNE_PKGARCH (%s)." % (pkgarchs, defaulttune, tunepkg) return messages |