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 BB4BD138331 for ; Mon, 12 Feb 2018 09:45:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 908E8E0C11; Mon, 12 Feb 2018 09:45:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7202DE0C11 for ; Mon, 12 Feb 2018 09:45:36 +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 BDB09335C31 for ; Mon, 12 Feb 2018 09:45:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3732D241 for ; Mon, 12 Feb 2018 09:45:33 +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: <1518428497.a2c6fa7dc9b2ad29d65a4eece1766c91433cfd21.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: a2c6fa7dc9b2ad29d65a4eece1766c91433cfd21 X-VCS-Branch: master Date: Mon, 12 Feb 2018 09:45:33 +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-Archives-Salt: 63f0ed31-8119-49ff-a29b-a482c467ea2b X-Archives-Hash: 6a2834bdf987426e2f37919d24472813 commit: a2c6fa7dc9b2ad29d65a4eece1766c91433cfd21 Author: Fabian Groffen gentoo org> AuthorDate: Mon Feb 12 09:41:37 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Feb 12 09:41:37 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a2c6fa7d scripts/bootstrap-prefix: avoid pod2man failures in bootstrap_gnu pod2man may be very old, not understanding switches like --utf8. It's a bit silly to die on failures like that, so just don't build man-pages (we don't need them in stage1 anyway). scripts/bootstrap-prefix.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 07905d21ef..0b30448fc9 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -732,6 +732,9 @@ bootstrap_gnu() { # but portage's multijob needs more unique pipe names [[ ${PN},${CHOST} == bash,*-aix* ]] && export CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-DUSE_MKTEMP" + # pod2man may be too old (not understanding --utf8) but we don't + # care about manpages at this stage + export ac_cv_path_POD2MAN=no # Darwin9 in particular doesn't compile when using system readline, # but we don't need any groovy input at all, so just disable it