mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
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 master rev: 1b24eaa71702c07e525d8a62c08c0983e9917468) (From OE-Core rev: 8951cce6b9c68e3100ab2c568baf5148c1a0221d) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
aefa1a6eea
commit
5553c4cd8d
@@ -30,7 +30,7 @@ do_compile_prepend() {
|
||||
aarch64) TUPLE=aarch64-unknown-linux-gnu ;;
|
||||
arm) TUPLE=arm-unknown-linux-gnueabi ;;
|
||||
armeb) TUPLE=arm-unknown-linux-gnueabi ;;
|
||||
i586) TUPLE=i486-pc-linux-gnu ;;
|
||||
i586|i686) TUPLE=i486-pc-linux-gnu ;;
|
||||
mipsel) TUPLE=mipsel-unknown-linux-gnu ;;
|
||||
mips64el) TUPLE=mipsel-unknown-linux-gnu ;;
|
||||
mips64) TUPLE=mips-unknown-linux-gnu ;;
|
||||
|
||||
Reference in New Issue
Block a user