Gentoo Archives: gentoo-alt

From: Alan Hourihane <alanh@×××××××××××.uk>
To: gentoo-alt@l.g.o
Subject: Re: [gentoo-alt] readline ebuild problem
Date: Tue, 25 Nov 2008 17:02:14
Message-Id: 1227632531.13985.447.camel@jetpack.demon.co.uk
In Reply to: Re: [gentoo-alt] readline ebuild problem by Fabian Groffen
1 On Tue, 2008-11-25 at 17:57 +0100, Fabian Groffen wrote:
2 > On 25-11-2008 16:53:19 +0000, Alan Hourihane wrote:
3 > > There's a bug in the readline ebuild that says this...
4 > >
5 > > [[ $(get_libname) != .a ]] &&
6 > >
7 > > It should be....
8 > >
9 > > [[ $(get_libname) == .a ]] &&
10 >
11 > I think haubi did this on purpose, as AIX has .a for "shared libraries"
12 > :(
13 > It moves the "static" library out of the way, but if the platform
14 > happens to use .a for that, it refrains from doing so.
15 >
16 > Haubi has the last word on this.
17
18 Then I need to add....
19
20 [[ ${CHOST} == *-mint* ]] &&
21 mv "${ED}"/$(get_libdir)/lib{readline,history}.a
22 "${ED}"/usr/$(get_libdir)/
23
24 Alan.

Replies

Subject Author
Re: [gentoo-alt] readline ebuild problem Fabian Groffen <grobian@g.o>