Gentoo Archives: gentoo-alt

From: Fabian Groffen <grobian@g.o>
To: gentoo-alt@l.g.o
Subject: Re: [gentoo-alt] Bootstraping failure on x86 solaris in grep
Date: Thu, 15 Jan 2009 18:55:55
Message-Id: 20090115185549.GB16962@gentoo.org
In Reply to: Re: [gentoo-alt] Bootstraping failure on x86 solaris in grep by Daniel Vergien
1 On 10-01-2009 11:38:17 +0100, Daniel Vergien wrote:
2 > Hm, a bit strange, if I remove --diasble-nls from the bootstrap_gnu()
3 > function in bootstrap_prefix it compiles fine.
4
5 Weird. The code looks like this:
6
7 # AIX doesn't like it when --disable-nls is set, OSX doesn't like it
8 # when it's not. Solaris and Linux build fine with --disable-nls.
9 # However, (horror) grep on OSX fails with --disable-nls :(
10 if [[ ${A%-*} == "grep" ]] ; then
11 [[ ${CHOST} == *-aix* || ${CHOST} == *-darwin* ]] || \
12 myconf="${myconf} --disable-nls"
13 # Solaris 11 has a messed up prce installation. We don't need
14 # it anyway, so just disable it
15 myconf="${myconf} --disable-perl-regexp"
16 else
17 [[ $CHOST == *-aix* ]] || myconf="${myconf} --disable-nls"
18 fi
19
20 That would suggest another || to be added for solaris not to add
21 --disable-nls?
22
23 --
24 Fabian Groffen
25 Gentoo on a different level

Replies

Subject Author
Re: Re: [gentoo-alt] Bootstraping failure on x86 solaris in grep Fabian Groffen <grobian@g.o>