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 8C3CB1382C5 for ; Mon, 4 Jan 2021 10:57:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C37D3E0930; Mon, 4 Jan 2021 10:57:32 +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 A6911E0930 for ; Mon, 4 Jan 2021 10:57:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 692773410D0 for ; Mon, 4 Jan 2021 10:57:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E437F488 for ; Mon, 4 Jan 2021 10:57:29 +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: <1609757777.518ac309d3724bfa2ea201451a260731b82f042e.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: 518ac309d3724bfa2ea201451a260731b82f042e X-VCS-Branch: master Date: Mon, 4 Jan 2021 10:57:29 +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: ef9c3868-6bd9-4a7a-a2c4-10ba20fef1c7 X-Archives-Hash: a2f8549a198a18f041679fd49346d17c commit: 518ac309d3724bfa2ea201451a260731b82f042e Author: Fabian Groffen gentoo org> AuthorDate: Mon Jan 4 10:56:17 2021 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Jan 4 10:56:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=518ac309 scripts/bootstrap-prefix: bootstrap cmake on ppc-macos too Since darwin-xtools is being pulled in now, we need cmake for that too, so install one (older version) and pray that it is sufficient. Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 21c420ba80..7927faf1bb 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1516,7 +1516,7 @@ bootstrap_stage1() { then # TODO: make DARWIN_USE_GCC path also activated on ppc-macos, # since it effectively is so - if [[ ${DARWIN_USE_GCC} != 1 && ${CHOST} != powerpc* ]] ; then + if [[ ${DARWIN_USE_GCC} != 1 || ${CHOST} == powerpc* ]] ; then (bootstrap_cmake) || return 1 fi fi