summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorGeorgy Yakovlev <gyakovlev@gentoo.org>2019-02-05 01:07:03 -0800
committerGeorgy Yakovlev <gyakovlev@gentoo.org>2019-02-05 01:09:39 -0800
commit0fc8a727d9533839b1aa6955dfb4f55c3dc775cb (patch)
treecf153382f9957fae0541f884dab9b6c7c5e7f19c /eclass
parentdev-embedded/u-boot-tools: version bump to 2019.01 (diff)
downloadgentoo-0fc8a727d9533839b1aa6955dfb4f55c3dc775cb.tar.gz
gentoo-0fc8a727d9533839b1aa6955dfb4f55c3dc775cb.tar.bz2
gentoo-0fc8a727d9533839b1aa6955dfb4f55c3dc775cb.zip
java-vm-2.eclass: fix ppc64le handing in get_system_arch()
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/java-vm-2.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
index 2ce5bce0e71b..d71b7285996d 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} ;;