Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Mon, 12 Feb 2018 09:45:37
Message-Id: 1518428497.a2c6fa7dc9b2ad29d65a4eece1766c91433cfd21.grobian@gentoo
1 commit: a2c6fa7dc9b2ad29d65a4eece1766c91433cfd21
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 12 09:41:37 2018 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 12 09:41:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a2c6fa7d
7
8 scripts/bootstrap-prefix: avoid pod2man failures in bootstrap_gnu
9
10 pod2man may be very old, not understanding switches like --utf8. It's a
11 bit silly to die on failures like that, so just don't build man-pages
12 (we don't need them in stage1 anyway).
13
14 scripts/bootstrap-prefix.sh | 3 +++
15 1 file changed, 3 insertions(+)
16
17 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
18 index 07905d21ef..0b30448fc9 100755
19 --- a/scripts/bootstrap-prefix.sh
20 +++ b/scripts/bootstrap-prefix.sh
21 @@ -732,6 +732,9 @@ bootstrap_gnu() {
22 # but portage's multijob needs more unique pipe names
23 [[ ${PN},${CHOST} == bash,*-aix* ]] &&
24 export CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-DUSE_MKTEMP"
25 + # pod2man may be too old (not understanding --utf8) but we don't
26 + # care about manpages at this stage
27 + export ac_cv_path_POD2MAN=no
28
29 # Darwin9 in particular doesn't compile when using system readline,
30 # but we don't need any groovy input at all, so just disable it