diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-30 14:53:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-31 19:30:06 +0100 |
commit | ab44ec9618109b0852d9441b6dd065c72c86acb2 (patch) | |
tree | e4c3bee134af5e0f675a2163e3be6aa1eacdd8fc | |
parent | 5200d38222c3188e695080b45b975daa20c8a9fa (diff) | |
download | openembedded-core-ab44ec9618109b0852d9441b6dd065c72c86acb2.tar.gz openembedded-core-ab44ec9618109b0852d9441b6dd065c72c86acb2.tar.bz2 openembedded-core-ab44ec9618109b0852d9441b6dd065c72c86acb2.tar.xz openembedded-core-ab44ec9618109b0852d9441b6dd065c72c86acb2.zip |
sanity.bbclass: Fix broken whitespace
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 b26696809..7fc334388 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) |