summaryrefslogtreecommitdiffstats
path: root/meta/classes/sanity.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r--meta/classes/sanity.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index edd2df2626..9b97b462e4 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -823,7 +823,7 @@ def check_sanity_everybuild(status, d):
823 # If SDK_VENDOR looks like "-my-sdk" then the triples are badly formed so fail early 823 # If SDK_VENDOR looks like "-my-sdk" then the triples are badly formed so fail early
824 sdkvendor = d.getVar("SDK_VENDOR") 824 sdkvendor = d.getVar("SDK_VENDOR")
825 if not (sdkvendor.startswith("-") and sdkvendor.count("-") == 1): 825 if not (sdkvendor.startswith("-") and sdkvendor.count("-") == 1):
826 status.addresult("SDK_VENDOR should be of the form '-foosdk' with a single dash\n") 826 status.addresult("SDK_VENDOR should be of the form '-foosdk' with a single dash; found '%s'\n" % sdkvendor)
827 827
828 check_supported_distro(d) 828 check_supported_distro(d)
829 829