summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-04-30 20:14:02 +0100
committerJoshua Lock <josh@linux.intel.com>2010-04-30 20:15:56 +0100
commitd425fac6d12ea334fa74e13006b81031cd392402 (patch)
tree64213347f7adb6b172e3511eabc29cfece2fa89d /meta
parent70a930f30ed30f7449320f5707145f882bde1e46 (diff)
downloadopenembedded-core-d425fac6d12ea334fa74e13006b81031cd392402.tar.gz
openembedded-core-d425fac6d12ea334fa74e13006b81031cd392402.tar.bz2
openembedded-core-d425fac6d12ea334fa74e13006b81031cd392402.tar.xz
openembedded-core-d425fac6d12ea334fa74e13006b81031cd392402.zip
sanity.bbclass: fix typo in earlier commit
Commit fbe3d41eb0c75500d8f16bfd2975cd3136ef1335 left a trailing bracket which cause an interpretation error Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta')
-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 208f65ff5..fcb7846db 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -59,7 +59,7 @@ def check_sanity(e):
conf_version = data.getVar('POKY_CONF_VERSION', e.data, True)
if current_conf != conf_version:
- messages = messages + "Poky has noticed your version of local.conf was generated from an older version of local.conf.sample and there have been updates made to this file. Please compare the two files and merge any changes before continuing.\nMatching the version numbers will remove this message.\n\"meld conf/local.conf conf/local.conf.sample\" is a good way to visualise the changes")
+ messages = messages + "Poky has noticed your version of local.conf was generated from an older version of local.conf.sample and there have been updates made to this file. Please compare the two files and merge any changes before continuing.\nMatching the version numbers will remove this message.\n\"meld conf/local.conf conf/local.conf.sample\" is a good way to visualise the changes"
assume_provided = data.getVar('ASSUME_PROVIDED', e.data , True).split()
# Check user doesn't have ASSUME_PROVIDED = instead of += in local.conf
@@ -174,7 +174,7 @@ def check_sanity(e):
f = file(abifile, "w")
f.write(current_abi)
elif abi == "5" and current_abi != "5":
- messages = messages + "Staging layout has changed. The cross directory has been deprecated and cross packages are now built under the native sysroot.\nThis requires a rebuild.\n"
+ messages = messages + "Staging layout has changed. The cross directory has been deprecated and cross packages are now built under the native sysroot.\nThis requires a rebuild.\n"
elif (abi != current_abi):
# Code to convert from one ABI to another could go here if possible.
messages = messages + "Error, TMPDIR has changed ABI (%s to %s) and you need to either rebuild, revert or adjust it at your own risk.\n" % (abi, current_abi)