Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Tue, 01 Dec 2020 19:19:46
Message-Id: 1606850377.63a395a7bd086259dcd12edd344e528b54233327.grobian@gentoo
1 commit: 63a395a7bd086259dcd12edd344e528b54233327
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 19:18:45 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 19:19:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=63a395a7
7
8 scripts/bootstrap-prefix: add powerpc64le profile setup
9
10 Bug: https://bugs.gentoo.org/755551
11 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
12
13 scripts/bootstrap-prefix.sh | 7 +++++--
14 1 file changed, 5 insertions(+), 2 deletions(-)
15
16 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
17 index 159fc88d9a..23c8c32264 100755
18 --- a/scripts/bootstrap-prefix.sh
19 +++ b/scripts/bootstrap-prefix.sh
20 @@ -440,10 +440,13 @@ bootstrap_setup() {
21 profile=${profile_linux/ARCH/ia64}
22 ;;
23 powerpc-unknown-linux-gnu)
24 - profile=${profile_linux/ARCH/powerpc/ppc}
25 + profile=${profile_linux/ARCH/ppc}
26 ;;
27 powerpc64-unknown-linux-gnu)
28 - profile=${profile_linux/ARCH/powerpc/ppc64}
29 + profile=${profile_linux/ARCH/ppc64}
30 + ;;
31 + powerpc64le-unknown-linux-gnu)
32 + profile=${profile_linux/ARCH/ppc64le}
33 ;;
34 aarch64-unknown-linux-gnu)
35 profile=${profile_linux/ARCH/arm64}