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 BA3B0138335 for ; Wed, 20 Mar 2019 08:51:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD1ACE092A; Wed, 20 Mar 2019 08:51:38 +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 860C5E092A for ; Wed, 20 Mar 2019 08:51:38 +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 36557335D0A for ; Wed, 20 Mar 2019 08:51:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E663F56A for ; Wed, 20 Mar 2019 08:51:34 +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: <1553071832.805094aa7d8756bd7d6a390760b20cabb4d530e8.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: 805094aa7d8756bd7d6a390760b20cabb4d530e8 X-VCS-Branch: master Date: Wed, 20 Mar 2019 08:51:34 +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: 01788e3f-8a5d-4cec-af1c-16fc4f7a7750 X-Archives-Hash: 4d4fc20f988a2ad83cc4acd72032bd09 commit: 805094aa7d8756bd7d6a390760b20cabb4d530e8 Author: Fabian Groffen gentoo org> AuthorDate: Wed Mar 20 08:50:32 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Mar 20 08:50:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=805094aa scripts/bootstrap-prefix: try bootstrapping zlib-1.2.11 The latest version of zlib is installed later, so if we can download just one version, that would be great. Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index c8a0ae627e..e57e932d0b 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1116,6 +1116,7 @@ bootstrap_zlib_core() { } bootstrap_zlib() { + bootstrap_zlib_core 1.2.11 || \ bootstrap_zlib_core 1.2.8 || bootstrap_zlib_core 1.2.7 || \ bootstrap_zlib_core 1.2.6 || bootstrap_zlib_core 1.2.5 }