From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CE4C21382C5 for ; Tue, 1 Dec 2020 19:19:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09871E0841; Tue, 1 Dec 2020 19:19:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E671DE0841 for ; Tue, 1 Dec 2020 19:19:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CAA23340ED7 for ; Tue, 1 Dec 2020 19:19:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73798453 for ; Tue, 1 Dec 2020 19:19:43 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1606850377.63a395a7bd086259dcd12edd344e528b54233327.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 63a395a7bd086259dcd12edd344e528b54233327 X-VCS-Branch: master Date: Tue, 1 Dec 2020 19:19:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cb93bee8-9593-4755-997d-db88f32144b7 X-Archives-Hash: f3a25e70eb1f18a22d27d6bcf0a738f3 commit: 63a395a7bd086259dcd12edd344e528b54233327 Author: Fabian Groffen gentoo org> AuthorDate: Tue Dec 1 19:18:45 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Dec 1 19:19:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=63a395a7 scripts/bootstrap-prefix: add powerpc64le profile setup Bug: https://bugs.gentoo.org/755551 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 7 +++++-- 1 file 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}