summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2017-07-01 09:51:04 +0100
committerJames Le Cuirot <chewi@gentoo.org>2017-07-01 15:25:51 +0100
commit173d07a3254f04a52ac037a493ca34457ea90edc (patch)
tree33448437826800257094d36a4149a1a2b4c80fc9
parentapp-i18n/mecab-skkserv: remove DOCS (diff)
downloadgentoo-173d07a3.tar.gz
gentoo-173d07a3.tar.bz2
gentoo-173d07a3.zip
toolchain-funcs.eclass: We only support little-endian Alpha
Funny that no one noticed this for 10 years. :) Thanks to klausman for clearing this up.
-rw-r--r--eclass/toolchain-funcs.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 121db46e62b5..777fce905f3e 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -572,7 +572,7 @@ tc-endian() {
case ${host} in
aarch64*be) echo big;;
aarch64) echo little;;
- alpha*) echo big;;
+ alpha*) echo little;;
arm*b*) echo big;;
arm*) echo little;;
cris*) echo little;;