diff options
Diffstat (limited to 'meta/classes')
| -rw-r--r-- | meta/classes/sanity.bbclass | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 6e13d2ac4d..639e1ea61a 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
| @@ -338,6 +338,19 @@ def check_sanity(e): | |||
| 338 | elif oeroot.find (' ') != -1: | 338 | elif oeroot.find (' ') != -1: |
| 339 | messages = messages + "Error, you have a space in your POKYBASE directory path. Please move Poky to a directory which doesn't include a space." | 339 | messages = messages + "Error, you have a space in your POKYBASE directory path. Please move Poky to a directory which doesn't include a space." |
| 340 | 340 | ||
| 341 | # Check that we don't have duplicate entries in PACKAGE_ARCHS | ||
| 342 | pkgarchs = data.getVar('PACKAGE_ARCHS', e.data, True) | ||
| 343 | seen = {} | ||
| 344 | dups = [] | ||
| 345 | |||
| 346 | for pa in pkgarchs.split(): | ||
| 347 | if seen.get(pa, 0) == 1: | ||
| 348 | dups.append(pa) | ||
| 349 | else: | ||
| 350 | seen[pa] = 1 | ||
| 351 | if len(dups): | ||
| 352 | messages = messages + "Error, the PACKAGE_ARCHS variable contains duplicates. The following archs are listed more than once: %s" % " ".join(dups) | ||
| 353 | |||
| 341 | if messages != "": | 354 | if messages != "": |
| 342 | raise_sanity_error(messages) | 355 | raise_sanity_error(messages) |
| 343 | 356 | ||
