Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 01 Jul 2017 14:26:16
Message-Id: 1498919151.173d07a3254f04a52ac037a493ca34457ea90edc.chewi@gentoo
1 commit: 173d07a3254f04a52ac037a493ca34457ea90edc
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 1 08:51:04 2017 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 1 14:25:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=173d07a3
7
8 toolchain-funcs.eclass: We only support little-endian Alpha
9
10 Funny that no one noticed this for 10 years. :) Thanks to klausman for
11 clearing this up.
12
13 eclass/toolchain-funcs.eclass | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
17 index 121db46e62b..777fce905f3 100644
18 --- a/eclass/toolchain-funcs.eclass
19 +++ b/eclass/toolchain-funcs.eclass
20 @@ -572,7 +572,7 @@ tc-endian() {
21 case ${host} in
22 aarch64*be) echo big;;
23 aarch64) echo little;;
24 - alpha*) echo big;;
25 + alpha*) echo little;;
26 arm*b*) echo big;;
27 arm*) echo little;;
28 cris*) echo little;;