summaryrefslogtreecommitdiffstats
path: root/meta/classes/sanity.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-08-01 18:17:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-03 10:33:13 +0100
commitac60aa8cf707eec58e2cb51e7c406250d0b43ef1 (patch)
treee171c251e06c593874ac9f8a7164bc00f9502422 /meta/classes/sanity.bbclass
parent9aba9225d3677c6066fd5ec1c878fbca3c16d235 (diff)
downloadpoky-ac60aa8cf707eec58e2cb51e7c406250d0b43ef1.tar.gz
classes/sanity: fix some grammatical errors in messages
(From OE-Core rev: e2cccd73e480318461641d8bc26d538178ff628a) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r--meta/classes/sanity.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index cc674909ba..4df3ca8001 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -522,7 +522,7 @@ def check_sanity_version_change(status, d):
522 status.addresult("Your gcc version is older than 4.5, please add the following param to local.conf\n \ 522 status.addresult("Your gcc version is older than 4.5, please add the following param to local.conf\n \
523 %s\n" % message) 523 %s\n" % message)
524 if not result: 524 if not result:
525 status.addresult("Your gcc version is older then 4.5 or is not working properly. Please verify you can build") 525 status.addresult("Your gcc version is older than 4.5 or is not working properly. Please verify you can build")
526 status.addresult(" and link something that uses atomic operations, such as: \n") 526 status.addresult(" and link something that uses atomic operations, such as: \n")
527 status.addresult(" __sync_bool_compare_and_swap (&atomic, 2, 3);\n") 527 status.addresult(" __sync_bool_compare_and_swap (&atomic, 2, 3);\n")
528 528
@@ -567,7 +567,7 @@ def check_sanity_version_change(status, d):
567 567
568 oes_bb_conf = d.getVar( 'OES_BITBAKE_CONF', True) 568 oes_bb_conf = d.getVar( 'OES_BITBAKE_CONF', True)
569 if not oes_bb_conf: 569 if not oes_bb_conf:
570 status.addresult('You do not include the OpenEmbedded version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n') 570 status.addresult('You are not using the OpenEmbedded version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n')
571 571
572 # The length of tmpdir can't be longer than 410 572 # The length of tmpdir can't be longer than 410
573 status.addresult(check_path_length(tmpdir, "TMPDIR", 410)) 573 status.addresult(check_path_length(tmpdir, "TMPDIR", 410))
@@ -631,7 +631,7 @@ def check_sanity_everybuild(status, d):
631 if d.getVar( 'IMAGETEST', True ) == 'qemu': 631 if d.getVar( 'IMAGETEST', True ) == 'qemu':
632 display = d.getVar("BB_ORIGENV", False).getVar("DISPLAY", True) 632 display = d.getVar("BB_ORIGENV", False).getVar("DISPLAY", True)
633 if not display: 633 if not display:
634 status.addresult('qemuimagetest needs a X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n') 634 status.addresult('qemuimagetest needs an X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n')
635 635
636 omask = os.umask(022) 636 omask = os.umask(022)
637 if omask & 0755: 637 if omask & 0755: