Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/nstx/files: nstx-1.1_beta6_05-respect-ldflags.patch
Date: Mon, 05 Jul 2010 07:31:19
Message-Id: 20100705073115.132DD2CF3A@corvid.gentoo.org
1 xarthisius 10/07/05 07:31:15
2
3 Added: nstx-1.1_beta6_05-respect-ldflags.patch
4 Log:
5 Respect LDFLAGS wrt bug 323919.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-misc/nstx/files/nstx-1.1_beta6_05-respect-ldflags.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/nstx/files/nstx-1.1_beta6_05-respect-ldflags.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/nstx/files/nstx-1.1_beta6_05-respect-ldflags.patch?rev=1.1&content-type=text/plain
13
14 Index: nstx-1.1_beta6_05-respect-ldflags.patch
15 ===================================================================
16 Respects LDFLAGS
17
18 http://bugs.gentoo.org/show_bug.cgi?id=323919
19
20 --- nstx-1.1-beta6/Makefile
21 +++ nstx-1.1-beta6/Makefile
22 @@ -11,10 +11,10 @@
23 all: $(PROGS)
24
25 nstxd: $(NSTXD_OBJS)
26 - $(CC) $(CFLAGS) -o nstxd $(NSTXD_OBJS)
27 + $(CC) $(CFLAGS) $(LDFLAGS) -o nstxd $(NSTXD_OBJS)
28
29 nstxcd: $(NSTXCD_OBJS)
30 - $(CC) $(CFLAGS) -o nstxcd $(NSTXCD_OBJS)
31 + $(CC) $(CFLAGS) $(LDFLAGS) -o nstxcd $(NSTXCD_OBJS)
32
33 clean:
34 rm -f *.o $(PROGS) Makefile.bak *~ core