diff options
author | Roy Li <rongqing.li@windriver.com> | 2013-11-25 16:58:55 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-25 09:09:18 +0000 |
commit | 66cf1cc01b8e4f6284e13d57d9fdcb9f228a6846 (patch) | |
tree | f24c5c90e9d3d21c51119c70e6a110dfe541be87 /meta/recipes-sato/webkit | |
parent | d1deb07d158cf27bce2ee95e2f02b4fd1d00fe21 (diff) | |
download | openembedded-core-66cf1cc01b8e4f6284e13d57d9fdcb9f228a6846.tar.gz openembedded-core-66cf1cc01b8e4f6284e13d57d9fdcb9f228a6846.tar.bz2 openembedded-core-66cf1cc01b8e4f6284e13d57d9fdcb9f228a6846.zip |
webkit/midori: fix COMPATIBLE_HOST
webkit can not be built on mips64 with n32 ABI, but can be built on mips64
n64 and o32 ABI whose TARGET_SYS's name is mips-*-linux
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit')
-rw-r--r-- | meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb index adab4fa753..3581de316a 100644 --- a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb +++ b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb @@ -31,8 +31,8 @@ SRC_URI = "\ SRC_URI[md5sum] = "dcbf9d5e2e6391f857c29a57528b32a6" SRC_URI[sha256sum] = "ada02d636af61aed38f142d3cded662d141ce71264f624c4eb873621a74cc9e7" -# webkit-gtk can NOT be built on MIPS64 with 64 bits userspace -COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" +# webkit-gtk can NOT be built on MIPS64 with n32 ABI +COMPATIBLE_HOST_mips64 = "mips64.*-linux" inherit autotools lib_package gtk-doc pkgconfig |