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 | |
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')
-rw-r--r-- | meta/recipes-sato/midori/midori_0.5.5.bb | 4 | ||||
-rw-r--r-- | meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-sato/midori/midori_0.5.5.bb b/meta/recipes-sato/midori/midori_0.5.5.bb index 7c233cbd4b..d3f42cc06e 100644 --- a/meta/recipes-sato/midori/midori_0.5.5.bb +++ b/meta/recipes-sato/midori/midori_0.5.5.bb @@ -11,8 +11,8 @@ SRC_URI[md5sum] = "b99e87d4b73a4732ed1c1e591f0242ac" SRC_URI[sha256sum] = "ca69382a285222a86028abebd73fed1976735883027ff0adc094b627789bbd62" # midori depends on webkit-gtk, and webkit-gtk can NOT be built on -# MIPS64 with 64 bits userspace. So remove it from mips64 temporarily. -COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32" +# MIPS64 with n32 ABI. So remove it from mips64 n32 temporarily. +COMPATIBLE_HOST_mips64 = "mips64.*-linux" inherit gtk-icon-cache pkgconfig vala pythonnative 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 |