summaryrefslogtreecommitdiffstats
path: root/classes/sanity.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2009-08-09 01:55:39 -0700
committerKhem Raj <raj.khem@gmail.com>2009-08-09 01:55:39 -0700
commita394010d4405423dd117e67e872513caafc1d0b7 (patch)
tree29c4f4768c0005e6574dead0cb599b415aef4f64 /classes/sanity.bbclass
parentcf58571e78182f7cc07c9619ca4ae0dc2e6b5153 (diff)
downloadopenembedded-a394010d4405423dd117e67e872513caafc1d0b7.tar.gz
sanity.bbclass: Correct typo to refer to PACKAGE_EXTRA_ARCHS
We were using EXTRA_PACKAGE_ARCHS which was sort of misleading if you started to search for this variable. It was a typo hence fixed as obvious. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'classes/sanity.bbclass')
-rw-r--r--classes/sanity.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass
index 29624c3f78..83c03299bf 100644
--- a/classes/sanity.bbclass
+++ b/classes/sanity.bbclass
@@ -185,7 +185,7 @@ def check_sanity(e):
archs = data.getVar('PACKAGE_ARCHS', e.data, True).split()
for arch in archs:
if archs.count(arch) != 1:
- messages = messages + "Error, Your PACKAGE_ARCHS field contains duplicates. Perhaps you set EXTRA_PACKAGE_ARCHS twice accidently through some tune file?\n"
+ messages = messages + "Error, Your PACKAGE_ARCHS field contains duplicates. Perhaps you set PACKAGE_EXTRA_ARCHS twice accidently through some tune file?\n"
break
if messages != "":