Gentoo Archives: gentoo-dev

From: Michael Haubenwallner <haubi@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] Re: [PATCH 4/4] winnt: die if libtool version is not 2.4.6+
Date: Fri, 13 Mar 2020 13:36:57
Message-Id: 14134dd2-e553-e768-71c2-d7e31632e5a2@gentoo.org
In Reply to: Re: [gentoo-dev] [PATCH 4/4] winnt: die if libtool version is not 2.4.6+ by James Le Cuirot
1 On 3/12/20 9:48 PM, James Le Cuirot wrote:
2 > On Thu, 12 Mar 2020 09:06:26 +0100
3 > haubi@g.o wrote:
4 >
5 >> From: Michael Haubenwallner <haubi@g.o>
6 >>
7 >> Signed-off-by: Michael Haubenwallner <haubi@g.o>
8 >> ---
9 >> eltpatch.in | 14 +++++++++++++-
10 >> 1 file changed, 13 insertions(+), 1 deletion(-)
11 >>
12 >> diff --git a/eltpatch.in b/eltpatch.in
13 >> index 6b69216..e12f754 100644
14 >> --- a/eltpatch.in
15 >> +++ b/eltpatch.in
16 >> @@ -179,7 +179,7 @@ elibtoolize() {
17 >> *-hpux*) elt_patches+=" hpux-conf deplibs hc-flag-ld hardcode hardcode-relink relink-prog no-lc" ;;
18 >> *-irix*) elt_patches+=" irix-ltmain" ;;
19 >> *-mint*) elt_patches+=" mint-conf" ;;
20 >> - *-winnt*) elt_patches+=" winnt-conf winnt-ltmain" ;;
21 >> + *-winnt*) elt_patches+=" winnt-ltmain winnt-conf" ;;
22 >> esac
23 >>
24 >> if ${LD} --version 2>&1 | grep -qs 'GNU gold'; then
25 >
26 > This change reorders something you added in the first patch.
27 >
28
29 This is to perform the version check earlier rather than later.
30
31 Otherwise, the order is irrelevant.
32
33 Thanks!
34 /haubi/