diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-31 23:05:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-01 14:13:23 +0100 |
commit | 802080eb6dd4c872ef16797f06d1aee43624a64c (patch) | |
tree | b44bcd93d05583f890218ef40534e94a0fefa9a8 /meta/classes/allarch.bbclass | |
parent | fdead2bfc05340ac3134ca5de0ad33812d40c7b8 (diff) | |
download | poky-802080eb6dd4c872ef16797f06d1aee43624a64c.tar.gz |
allarch.bbclass: A "all" TARGET_ARCH is dangerous as an OVERRIDE
Having a generic word like "all" as an override is dangerous as this is an override
and can cause issues for function names like "sysroot_stage_all". This patch changes
it to "allarch" to help avoid this kind of problem. The field is only used in the
name of directories anyway.
(From OE-Core rev: 5d7d4e1ed9bedf2b6510796d76ea8f94739b9de2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/allarch.bbclass')
-rw-r--r-- | meta/classes/allarch.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/allarch.bbclass b/meta/classes/allarch.bbclass index b7c37c3dd1..26fca70635 100644 --- a/meta/classes/allarch.bbclass +++ b/meta/classes/allarch.bbclass | |||
@@ -9,7 +9,7 @@ INHIBIT_DEFAULT_DEPS = "1" | |||
9 | 9 | ||
10 | # Set these to a common set of values, we shouldn't be using them other that for WORKDIR directory | 10 | # Set these to a common set of values, we shouldn't be using them other that for WORKDIR directory |
11 | # naming anyway | 11 | # naming anyway |
12 | TARGET_ARCH = "all" | 12 | TARGET_ARCH = "allarch" |
13 | TARGET_OS = "linux" | 13 | TARGET_OS = "linux" |
14 | TARGET_CC_ARCH = "none" | 14 | TARGET_CC_ARCH = "none" |
15 | PACKAGE_EXTRA_ARCHS = "" | 15 | PACKAGE_EXTRA_ARCHS = "" |