diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-03-01 13:07:22 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-04 23:18:19 +0000 |
commit | 105d82383174df0e77d22e2d5eefe62a1093edaa (patch) | |
tree | 7b2e7dfbe42c403b9a5b377224665e94bdbc1a7d /meta/recipes-support/libgpg-error | |
parent | e4ffcaea2282f08bf7a7079330b5102ef7d26128 (diff) | |
download | poky-105d82383174df0e77d22e2d5eefe62a1093edaa.tar.gz |
libgpg-error: correctly configure on mips64
This fixes the long-standing error:
../../libgpg-error-1.26/src/posix-lock.c:137: get_lock_object: Assertion `!"sizeof lock obj"' failed.
(From OE-Core rev: f57ec88a7c7f50cd40ebeadb4da150ab39a6b6d9)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.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.26.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error_1.26.bb b/meta/recipes-support/libgpg-error/libgpg-error_1.26.bb index 87c4f5185b..b9e3b0065c 100644 --- a/meta/recipes-support/libgpg-error/libgpg-error_1.26.bb +++ b/meta/recipes-support/libgpg-error/libgpg-error_1.26.bb | |||
@@ -18,6 +18,7 @@ SRC_URI = "${GNUPG_MIRROR}/libgpg-error/libgpg-error-${PV}.tar.bz2 \ | |||
18 | 18 | ||
19 | SRC_URI[md5sum] = "97456709dbbcbb69354317ffe3e347cd" | 19 | SRC_URI[md5sum] = "97456709dbbcbb69354317ffe3e347cd" |
20 | SRC_URI[sha256sum] = "4c4bcbc90116932e3acd37b37812d8653b1b189c1904985898e860af818aee69" | 20 | SRC_URI[sha256sum] = "4c4bcbc90116932e3acd37b37812d8653b1b189c1904985898e860af818aee69" |
21 | PR = "r1" | ||
21 | 22 | ||
22 | BINCONFIG = "${bindir}/gpg-error-config" | 23 | BINCONFIG = "${bindir}/gpg-error-config" |
23 | 24 | ||
@@ -34,6 +35,7 @@ do_compile_prepend() { | |||
34 | arm) TUPLE=arm-unknown-linux-gnueabi ;; | 35 | arm) TUPLE=arm-unknown-linux-gnueabi ;; |
35 | armeb) TUPLE=arm-unknown-linux-gnueabi ;; | 36 | armeb) TUPLE=arm-unknown-linux-gnueabi ;; |
36 | i586|i686) TUPLE=i686-pc-linux-gnu ;; | 37 | i586|i686) TUPLE=i686-pc-linux-gnu ;; |
38 | mips64*) TUPLE=mips64el-unknown-linux-gnuabi64 ;; | ||
37 | mips*el) TUPLE=mipsel-unknown-linux-gnu ;; | 39 | mips*el) TUPLE=mipsel-unknown-linux-gnu ;; |
38 | mips*) TUPLE=mips-unknown-linux-gnu ;; | 40 | mips*) TUPLE=mips-unknown-linux-gnu ;; |
39 | x86_64) TUPLE=x86_64-pc-linux-gnu ;; | 41 | x86_64) TUPLE=x86_64-pc-linux-gnu ;; |