aboutsummaryrefslogtreecommitdiffstats
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
committerSaul Wold <sgw@linux.intel.com>2013-08-02 08:01:41 -0700
commite2cccd73e480318461641d8bc26d538178ff628a (patch)
treef40b69ca0f7742396fc08df29895db811591f13b /meta/classes/sanity.bbclass
parent08d61529f3c7a48ec82e1f8c9c28c7b2e5238934 (diff)
downloadopenembedded-core-contrib-e2cccd73e480318461641d8bc26d538178ff628a.tar.gz
classes/sanity: fix some grammatical errors in messages
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
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):
status.addresult("Your gcc version is older than 4.5, please add the following param to local.conf\n \
%s\n" % message)
if not result:
- status.addresult("Your gcc version is older then 4.5 or is not working properly. Please verify you can build")
+ status.addresult("Your gcc version is older than 4.5 or is not working properly. Please verify you can build")
status.addresult(" and link something that uses atomic operations, such as: \n")
status.addresult(" __sync_bool_compare_and_swap (&atomic, 2, 3);\n")
@@ -567,7 +567,7 @@ def check_sanity_version_change(status, d):
oes_bb_conf = d.getVar( 'OES_BITBAKE_CONF', True)
if not oes_bb_conf:
- status.addresult('You do not include the OpenEmbedded version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n')
+ status.addresult('You are not using the OpenEmbedded version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n')
# The length of tmpdir can't be longer than 410
status.addresult(check_path_length(tmpdir, "TMPDIR", 410))
@@ -631,7 +631,7 @@ def check_sanity_everybuild(status, d):
if d.getVar( 'IMAGETEST', True ) == 'qemu':
display = d.getVar("BB_ORIGENV", False).getVar("DISPLAY", True)
if not display:
- status.addresult('qemuimagetest needs a X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n')
+ status.addresult('qemuimagetest needs an X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n')
omask = os.umask(022)
if omask & 0755: