Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 05 Feb 2019 09:10:50
Message-Id: 1549357779.0fc8a727d9533839b1aa6955dfb4f55c3dc775cb.gyakovlev@gentoo
1 commit: 0fc8a727d9533839b1aa6955dfb4f55c3dc775cb
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 5 09:07:03 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 5 09:09:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fc8a727
7
8 java-vm-2.eclass: fix ppc64le handing in get_system_arch()
9
10 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
11
12 eclass/java-vm-2.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
16 index 2ce5bce0e71..d71b7285996 100644
17 --- a/eclass/java-vm-2.eclass
18 +++ b/eclass/java-vm-2.eclass
19 @@ -123,7 +123,7 @@ get_system_arch() {
20 case $(get_abi_CHOST ${abi}) in
21 mips*l*) echo mipsel ;;
22 mips*) echo mips ;;
23 - ppc64le*) echo ppc64le ;;
24 + powerpc64le*) echo ppc64le ;;
25 *)
26 case ${abi} in
27 *_fbsd) get_system_arch ${abi%_fbsd} ;;