diff options
author | Gary Thomas <gary@mlbassoc.com> | 2015-04-08 06:33:53 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-10 18:10:24 +0100 |
commit | 2b775793195f30167e0e09877031daa985e85e70 (patch) | |
tree | 961abf8b33b9124c3ccd915af6910cc4f87f6bf1 /meta/recipes-support/libgpg-error | |
parent | bf8aa743d972f42df95259e7fd0d81577b78096c (diff) | |
download | poky-2b775793195f30167e0e09877031daa985e85e70.tar.gz |
libgpg-error: Fix native build on i686
Most modern x86 systems return i686 as the system type. This
patch handles i486, i586 and i686 correctly.
(From OE-Core rev: 1b24eaa71702c07e525d8a62c08c0983e9917468)
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libgpg-error')
-rw-r--r-- | meta/recipes-support/libgpg-error/libgpg-error_1.18.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error_1.18.bb b/meta/recipes-support/libgpg-error/libgpg-error_1.18.bb index 6d11605e54..268066b26a 100644 --- a/meta/recipes-support/libgpg-error/libgpg-error_1.18.bb +++ b/meta/recipes-support/libgpg-error/libgpg-error_1.18.bb | |||
@@ -30,7 +30,7 @@ do_compile_prepend() { | |||
30 | aarch64) TUPLE=aarch64-unknown-linux-gnu ;; | 30 | aarch64) TUPLE=aarch64-unknown-linux-gnu ;; |
31 | arm) TUPLE=arm-unknown-linux-gnueabi ;; | 31 | arm) TUPLE=arm-unknown-linux-gnueabi ;; |
32 | armeb) TUPLE=arm-unknown-linux-gnueabi ;; | 32 | armeb) TUPLE=arm-unknown-linux-gnueabi ;; |
33 | i586) TUPLE=i486-pc-linux-gnu ;; | 33 | i586|i686) TUPLE=i486-pc-linux-gnu ;; |
34 | mipsel) TUPLE=mipsel-unknown-linux-gnu ;; | 34 | mipsel) TUPLE=mipsel-unknown-linux-gnu ;; |
35 | mips64el) TUPLE=mipsel-unknown-linux-gnu ;; | 35 | mips64el) TUPLE=mipsel-unknown-linux-gnu ;; |
36 | mips64) TUPLE=mips-unknown-linux-gnu ;; | 36 | mips64) TUPLE=mips-unknown-linux-gnu ;; |