diff options
author | Roy Li <rongqing.li@windriver.com> | 2013-11-29 14:11:00 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-30 09:41:58 +0000 |
commit | f5c4d18c1b0d8a252abb3b1f67f05a1689b3ea67 (patch) | |
tree | 08b3c1102849c856d2efe8ee724e606efd3ed669 /meta/recipes-sato/webkit | |
parent | c8d687f409a19312b34e215e7caaa39199598ed0 (diff) | |
download | openembedded-core-f5c4d18c1b0d8a252abb3b1f67f05a1689b3ea67.tar.gz openembedded-core-f5c4d18c1b0d8a252abb3b1f67f05a1689b3ea67.tar.bz2 openembedded-core-f5c4d18c1b0d8a252abb3b1f67f05a1689b3ea67.zip |
webkit/midori: block to build webkit on mips64 with libn32 ABI
To mips64 libn32, The HOST_SYS is mips64-*-linux-gnun32, the COMPATIBLE_HOST
is mips64.*-linux, the regular expression matching both will return true. so
append the ending position word into COMPATIBLE_HOST to make match failure
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 | 2 |
1 files changed, 1 insertions, 1 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 3581de316a..8c78b5b117 100644 --- a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb +++ b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb @@ -32,7 +32,7 @@ SRC_URI[md5sum] = "dcbf9d5e2e6391f857c29a57528b32a6" SRC_URI[sha256sum] = "ada02d636af61aed38f142d3cded662d141ce71264f624c4eb873621a74cc9e7" # webkit-gtk can NOT be built on MIPS64 with n32 ABI -COMPATIBLE_HOST_mips64 = "mips64.*-linux" +COMPATIBLE_HOST_mips64 = "mips64.*-linux$" inherit autotools lib_package gtk-doc pkgconfig |