Gentoo Archives: gentoo-dev

From: Michael Haubenwallner <haubi@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] Re: [PATCH] libtool.eclass: Have elibtoolize explicitly apply configure patches
Date: Fri, 15 Nov 2013 10:02:57
Message-Id: 5285F139.3030707@gentoo.org
In Reply to: [gentoo-dev] [PATCH] libtool.eclass: Have elibtoolize explicitly apply configure patches by Michael Haubenwallner
1 On 11/13/2013 10:14 AM, Michael Haubenwallner wrote:
2 > Hi all,
3 >
4 > as you might or might not be aware of, elibtoolize() originally was for applying
5 > patches to ltmain.sh, but now also applies patches to configure scripts.
6
7 > Attached patch drops that wild guesses, explicitly applying configure-patches to
8 > configure scripts, while still explicitly applying ltconf.sh-patches to ltconf.sh.
9
10 One update to this patch, to run elibtoolize once per directory again,
11 even if both filenames are in that same directory:
12
13 - set -- $(find "${S}" '(' -name ltmain.sh -o -name configure ')' -printf '%h ')
14 + set -- $(find "${S}" '(' -name ltmain.sh -o -name configure ')' -printf '%h\n' | sort -u)
15
16 > WDYT?
17
18 Without objections, I plan to commit this patch by the end of next week.
19
20 Thank you!
21 /haubi/

Attachments

File name MIME type
elibtoolize-conf-r1.diff text/plain

Replies