commit:     173d07a3254f04a52ac037a493ca34457ea90edc
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  1 08:51:04 2017 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Jul  1 14:25:51 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=173d07a3

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.

 eclass/toolchain-funcs.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 121db46e62b..777fce905f3 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;;

Reply via email to