commit: 0fc8a727d9533839b1aa6955dfb4f55c3dc775cb
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 5 09:07:03 2019 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Tue Feb 5 09:09:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fc8a727
java-vm-2.eclass: fix ppc64le handing in get_system_arch()
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
eclass/java-vm-2.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
index 2ce5bce0e71..d71b7285996 100644
--- a/eclass/java-vm-2.eclass
+++ b/eclass/java-vm-2.eclass
@@ -123,7 +123,7 @@ get_system_arch() {
case $(get_abi_CHOST ${abi}) in
mips*l*) echo mipsel ;;
mips*) echo mips ;;
- ppc64le*) echo ppc64le ;;
+ powerpc64le*) echo ppc64le ;;
*)
case ${abi} in
*_fbsd) get_system_arch ${abi%_fbsd} ;;