summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2020-12-01 20:18:45 +0100
committerFabian Groffen <grobian@gentoo.org>2020-12-01 20:19:37 +0100
commit63a395a7bd086259dcd12edd344e528b54233327 (patch)
treecb1fa0057af30daecc1bb62d8b38c42e311a1494
parentdev-libs/popt: migrate to ::gentoo (diff)
downloadprefix-63a395a7bd086259dcd12edd344e528b54233327.tar.gz
prefix-63a395a7bd086259dcd12edd344e528b54233327.tar.bz2
prefix-63a395a7bd086259dcd12edd344e528b54233327.zip
scripts/bootstrap-prefix: add powerpc64le profile setup
Bug: https://bugs.gentoo.org/755551 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rwxr-xr-xscripts/bootstrap-prefix.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 159fc88d9a..23c8c32264 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -440,10 +440,13 @@ bootstrap_setup() {
profile=${profile_linux/ARCH/ia64}
;;
powerpc-unknown-linux-gnu)
- profile=${profile_linux/ARCH/powerpc/ppc}
+ profile=${profile_linux/ARCH/ppc}
;;
powerpc64-unknown-linux-gnu)
- profile=${profile_linux/ARCH/powerpc/ppc64}
+ profile=${profile_linux/ARCH/ppc64}
+ ;;
+ powerpc64le-unknown-linux-gnu)
+ profile=${profile_linux/ARCH/ppc64le}
;;
aarch64-unknown-linux-gnu)
profile=${profile_linux/ARCH/arm64}