Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/udns/files: udns-0.1-respect-LDFLAGS.patch
Date: Sun, 02 Oct 2011 18:58:24
Message-Id: 20111002185809.B0A182004C@flycatcher.gentoo.org
1 pva 11/10/02 18:58:09
2
3 Added: udns-0.1-respect-LDFLAGS.patch
4 Log:
5 Version bump. Respect LDFLAGS, bug #336040 wrt Diego Elio Pettenò.
6
7 (Portage version: 2.1.10.20/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch?rev=1.1&content-type=text/plain
14
15 Index: udns-0.1-respect-LDFLAGS.patch
16 ===================================================================
17 === modified file 'Makefile.in'
18 --- Makefile.in 2011-10-02 18:48:41 +0000
19 +++ Makefile.in 2011-10-02 18:50:00 +0000
20 @@ -72,7 +72,7 @@
21 sharedlib: $(SOLIBV)
22
23 $(SOLIBV): $(SOBJS)
24 - $(CC) -shared -Wl,--soname,$(SOLIBV) -o $@ $(SOBJS)
25 + $(CC) $(LDFLAGS) -shared -Wl,--soname,$(SOLIBV) -o $@ $(SOBJS)
26 $(SOLIB): $(SOLIBV)
27 rm -f $@
28 ln -s $(SOLIBV) $@