diff options
author | Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | 2016-10-12 13:55:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-15 10:01:43 +0100 |
commit | ee835e1c6383d8879db42040556482207a018880 (patch) | |
tree | 3ddb5cfffde33820f7f5ab812df6b9dc8e5a4d96 | |
parent | 704c8b825bcd9ebfa3bdd0901a3950ab72d253d9 (diff) | |
download | poky-ee835e1c6383d8879db42040556482207a018880.tar.gz |
libgpg-error: Make case generic for MIPS
The tuples for MIPS r6 onwards are
- mipsisa32r6el
- mipsisa32r6
- mipsisa64r6el
- mipsisa64r6
The default case passes it forward which isn't handled well and
causes a build error. Rework the case statement to make it generic.
(From OE-Core rev: 49dc626182694d4dd92ed921a8fa2d9cd9f49635)
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libgpg-error/libgpg-error_1.24.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error_1.24.bb b/meta/recipes-support/libgpg-error/libgpg-error_1.24.bb index e45a7b860a..84a882a0c1 100644 --- a/meta/recipes-support/libgpg-error/libgpg-error_1.24.bb +++ b/meta/recipes-support/libgpg-error/libgpg-error_1.24.bb | |||
@@ -33,8 +33,8 @@ do_compile_prepend() { | |||
33 | arm) TUPLE=arm-unknown-linux-gnueabi ;; | 33 | arm) TUPLE=arm-unknown-linux-gnueabi ;; |
34 | armeb) TUPLE=arm-unknown-linux-gnueabi ;; | 34 | armeb) TUPLE=arm-unknown-linux-gnueabi ;; |
35 | i586|i686) TUPLE=i686-pc-linux-gnu ;; | 35 | i586|i686) TUPLE=i686-pc-linux-gnu ;; |
36 | mips64el) TUPLE=mipsel-unknown-linux-gnu ;; | 36 | mips*el) TUPLE=mipsel-unknown-linux-gnu ;; |
37 | mips64) TUPLE=mips-unknown-linux-gnu ;; | 37 | mips*) TUPLE=mips-unknown-linux-gnu ;; |
38 | x86_64) TUPLE=x86_64-pc-linux-gnu ;; | 38 | x86_64) TUPLE=x86_64-pc-linux-gnu ;; |
39 | *) TUPLE=${TARGET_ARCH}-unknown-linux-gnu ;; | 39 | *) TUPLE=${TARGET_ARCH}-unknown-linux-gnu ;; |
40 | esac | 40 | esac |