| Submitter | Richard Purdie |
|---|---|
| Date | Aug. 30, 2011, 4:20 p.m. |
| Message ID | <1314721219.5939.363.camel@rex> |
| Download | mbox | patch |
| Permalink | /patch/10787/ |
| State | New, archived |
| Headers | show |
Comments
Patch
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index b266968..7fc3343 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -423,12 +423,12 @@ def check_sanity(e): dups = [] for pa in pkgarchs.split(): - if seen.get(pa, 0) == 1: - dups.append(pa) - else: - seen[pa] = 1 - if pa == tunepkg: - tunefound = True + if seen.get(pa, 0) == 1: + dups.append(pa) + else: + seen[pa] = 1 + if pa == tunepkg: + tunefound = True if len(dups): messages = messages + "Error, the PACKAGE_ARCHS variable contains duplicates. The following archs are listed more than once: %s" % " ".join(dups)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> ---