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:38:31 +0100 |
commit | 0c78dbc6076c2114dc894e5cebdb2a01ad35d262 (patch) | |
tree | 22cf46511dcbb83c6581cd79caefef6a9d0b1f8f | |
parent | 8c1c37a149c02c5146a689d7c50750af8394d01d (diff) | |
download | poky-0c78dbc6076c2114dc894e5cebdb2a01ad35d262.tar.gz |
sanity.bbclass: Fix broken whitespace
(From OE-Core rev: ab44ec9618109b0852d9441b6dd065c72c86acb2)
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 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) |