diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-17 11:35:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-30 18:01:34 +0000 |
commit | 523f2a9ea970713fb775bc48f84b67420b1106a0 (patch) | |
tree | 3814bd2b5f1f263ffdd24ce25800e62f5e8c4b43 /meta/classes/cross-canadian.bbclass | |
parent | 57b2102b442ee11d5fbfeca0b20e22882522b67c (diff) | |
download | poky-523f2a9ea970713fb775bc48f84b67420b1106a0.tar.gz |
cross-canadian: Improve comment
The previous cross-canadian change was missing some tweaks
to the comments. This clarifies them slightly.
(From OE-Core rev: 154ecc40c289b15fe9cbb33befb20dd10112e788)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cross-canadian.bbclass')
-rw-r--r-- | meta/classes/cross-canadian.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass index c9742128e5..18ee7247b9 100644 --- a/meta/classes/cross-canadian.bbclass +++ b/meta/classes/cross-canadian.bbclass | |||
@@ -29,7 +29,8 @@ python () { | |||
29 | tos = d.getVar("TARGET_OS", True) | 29 | tos = d.getVar("TARGET_OS", True) |
30 | if (tos != "linux" and tos != "linux-gnuspe"): | 30 | if (tos != "linux" and tos != "linux-gnuspe"): |
31 | bb.fatal("Building cross-candian powerpc for an unknown TARGET_SYS (%s), please update cross-canadian.bbclass" % d.getVar("TARGET_SYS", True)) | 31 | bb.fatal("Building cross-candian powerpc for an unknown TARGET_SYS (%s), please update cross-canadian.bbclass" % d.getVar("TARGET_SYS", True)) |
32 | # Have to expand DEPENDS before we change the extensions | 32 | # This is a bit ugly. We need to zero LIBC/ABI extension which will change TARGET_OS |
33 | # however we need the old value in some variables. We expand those here first. | ||
33 | d.setVar("DEPENDS", d.getVar("DEPENDS", True)) | 34 | d.setVar("DEPENDS", d.getVar("DEPENDS", True)) |
34 | d.setVar("STAGING_BINDIR_TOOLCHAIN", d.getVar("STAGING_BINDIR_TOOLCHAIN", True)) | 35 | d.setVar("STAGING_BINDIR_TOOLCHAIN", d.getVar("STAGING_BINDIR_TOOLCHAIN", True)) |
35 | for prefix in ["AR", "AS", "DLLTOOL", "CC", "CXX", "GCC", "LD", "LIPO", "NM", "OBJDUMP", "RANLIB", "STRIP", "WINDRES"]: | 36 | for prefix in ["AR", "AS", "DLLTOOL", "CC", "CXX", "GCC", "LD", "LIPO", "NM", "OBJDUMP", "RANLIB", "STRIP", "WINDRES"]: |