diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-02-12 10:51:57 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-15 13:28:54 +0000 |
commit | b20373e72dac238b8ec05691cb657a3ba9e55ccb (patch) | |
tree | ef88268c74932568b71129b20a51e4ee58fc100e /meta | |
parent | 6d0d57776716a6619bfaf14ac4abc08d71a13dec (diff) | |
download | poky-b20373e72dac238b8ec05691cb657a3ba9e55ccb.tar.gz |
icecc.bbclass: Fix STAGING_BINDIR_TOOLCHAIN usage
STAGING_BINDIR_TOOLCHAIN is actually a path list, not a single path. Fix
icecc.bbclass to try all the paths in the variable instead of treating
it as a single path.
(From OE-Core rev: 8db0d3c14c166265b740030c208e0e19a0b2a1c6)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/icecc.bbclass | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index e8725b582b..35a1aaef86 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass | |||
@@ -210,15 +210,14 @@ def icecc_get_tool(bb, d, tool): | |||
210 | else: | 210 | else: |
211 | ice_dir = d.expand('${STAGING_BINDIR_TOOLCHAIN}') | 211 | ice_dir = d.expand('${STAGING_BINDIR_TOOLCHAIN}') |
212 | target_sys = d.expand('${TARGET_SYS}') | 212 | target_sys = d.expand('${TARGET_SYS}') |
213 | tool_bin = os.path.join(ice_dir, "%s-%s" % (target_sys, tool)) | 213 | for p in ice_dir.split(':'): |
214 | if os.path.isfile(tool_bin): | 214 | tool_bin = os.path.join(p, "%s-%s" % (target_sys, tool)) |
215 | return tool_bin | 215 | if os.path.isfile(tool_bin): |
216 | else: | 216 | return tool_bin |
217 | external_tool_bin = icecc_get_external_tool(bb, d, tool) | 217 | external_tool_bin = icecc_get_external_tool(bb, d, tool) |
218 | if os.path.isfile(external_tool_bin): | 218 | if os.path.isfile(external_tool_bin): |
219 | return external_tool_bin | 219 | return external_tool_bin |
220 | else: | 220 | return "" |
221 | return "" | ||
222 | 221 | ||
223 | def icecc_get_and_check_tool(bb, d, tool): | 222 | def icecc_get_and_check_tool(bb, d, tool): |
224 | # Check that g++ or gcc is not a symbolic link to icecc binary in | 223 | # Check that g++ or gcc is not a symbolic link to icecc binary in |