diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2013-02-11 18:04:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-11 22:49:27 +0000 |
commit | 5f05604cdf9d5bee8bf686ba2320258fda5f2676 (patch) | |
tree | c7ac5628b179385d551c1750d3f7603f0665a139 /meta/recipes-devtools/gcc/gcc-multilib-config.inc | |
parent | e9aa4c22d6cd41d8a498e7bc8aca258e90561b55 (diff) | |
download | poky-5f05604cdf9d5bee8bf686ba2320258fda5f2676.tar.gz |
gcc-cross-canadian: enable multilib support
(From OE-Core rev: ee7331e3e7d0b38f3e19ccf7e394537f5f653a22)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-multilib-config.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-multilib-config.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-multilib-config.inc b/meta/recipes-devtools/gcc/gcc-multilib-config.inc index 9403aab0bd..f89aa8ea7f 100644 --- a/meta/recipes-devtools/gcc/gcc-multilib-config.inc +++ b/meta/recipes-devtools/gcc/gcc-multilib-config.inc | |||
@@ -41,7 +41,8 @@ python gcc_multilib_setup() { | |||
41 | return | 41 | return |
42 | 42 | ||
43 | mlprefix = d.getVar('MLPREFIX', True) | 43 | mlprefix = d.getVar('MLPREFIX', True) |
44 | if ('%sgcc' % mlprefix) != d.getVar('PN', True): | 44 | pn = d.getVar('PN', True) |
45 | if ('%sgcc' % mlprefix) != pn and (not pn.startswith('gcc-cross-canadian')): | ||
45 | return | 46 | return |
46 | 47 | ||
47 | 48 | ||