summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-05-28 18:10:51 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-30 14:21:29 +0100
commitbc386b89345d1a4c941744f911065d498028d9d3 (patch)
treedc27e28f0d967fe5744151d518734e92edd67fa4
parent0299499770e33e0214146132799f8779e81e581d (diff)
downloadpoky-bc386b89345d1a4c941744f911065d498028d9d3.tar.gz
classes/sanity: fix a couple of grammatical errors in messages
(From OE-Core rev: 004ba67298e3e6e618df29597e9166c971a1941c) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/sanity.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 7c1533e846..f79fc3f953 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -406,7 +406,7 @@ def check_sanity(sanity_data):
406 406
407 if missing != "": 407 if missing != "":
408 missing = missing.rstrip(',') 408 missing = missing.rstrip(',')
409 messages = messages + "Please install following missing utilities: %s\n" % missing 409 messages = messages + "Please install the following missing utilities: %s\n" % missing
410 410
411 pseudo_msg = check_pseudo_wrapper() 411 pseudo_msg = check_pseudo_wrapper()
412 if pseudo_msg != "": 412 if pseudo_msg != "":
@@ -428,7 +428,7 @@ def check_sanity(sanity_data):
428 428
429 oes_bb_conf = sanity_data.getVar( 'OES_BITBAKE_CONF', True) 429 oes_bb_conf = sanity_data.getVar( 'OES_BITBAKE_CONF', True)
430 if not oes_bb_conf: 430 if not oes_bb_conf:
431 messages = messages + 'You do not include OpenEmbeddeds version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n' 431 messages = messages + 'You do not include the OpenEmbedded version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n'
432 432
433 nolibs = sanity_data.getVar('NO32LIBS', True) 433 nolibs = sanity_data.getVar('NO32LIBS', True)
434 if not nolibs: 434 if not nolibs: