diff options
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/classes/sanity.bbclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index b266968095..7fc334388b 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
| @@ -423,12 +423,12 @@ def check_sanity(e): | |||
| 423 | dups = [] | 423 | dups = [] |
| 424 | 424 | ||
| 425 | for pa in pkgarchs.split(): | 425 | for pa in pkgarchs.split(): |
| 426 | if seen.get(pa, 0) == 1: | 426 | if seen.get(pa, 0) == 1: |
| 427 | dups.append(pa) | 427 | dups.append(pa) |
| 428 | else: | 428 | else: |
| 429 | seen[pa] = 1 | 429 | seen[pa] = 1 |
| 430 | if pa == tunepkg: | 430 | if pa == tunepkg: |
| 431 | tunefound = True | 431 | tunefound = True |
| 432 | 432 | ||
| 433 | if len(dups): | 433 | if len(dups): |
| 434 | messages = messages + "Error, the PACKAGE_ARCHS variable contains duplicates. The following archs are listed more than once: %s" % " ".join(dups) | 434 | messages = messages + "Error, the PACKAGE_ARCHS variable contains duplicates. The following archs are listed more than once: %s" % " ".join(dups) |
