Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/ttyrec/files: ttyrec-1.0.8-ldflags.patch
Date: Mon, 25 Feb 2013 19:49:54
Message-Id: 20130225194951.38F142171E@flycatcher.gentoo.org
1 pinkbyte 13/02/25 19:49:51
2
3 Added: ttyrec-1.0.8-ldflags.patch
4 Log:
5 Revision bump: EAPI 5, base eclass, QA fixes. Respect LDFLAGS, wrt bug #331843, patch by Olivier Huber <oli.huber AT gmail.com>
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
8
9 Revision Changes Path
10 1.1 app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch?rev=1.1&content-type=text/plain
14
15 Index: ttyrec-1.0.8-ldflags.patch
16 ===================================================================
17 --- Makefile~ 2010-08-09 14:01:24.351716328 -0400
18 +++ Makefile 2010-08-09 14:00:45.981716329 -0400
19 @@ -10,13 +10,13 @@
20 all: $(TARGET)
21
22 ttyrec: ttyrec.o io.o
23 - $(CC) $(CFLAGS) -o ttyrec ttyrec.o io.o
24 + $(CC) $(LDFLAGS) $(CFLAGS) -o ttyrec ttyrec.o io.o
25
26 ttyplay: ttyplay.o io.o
27 - $(CC) $(CFLAGS) -o ttyplay ttyplay.o io.o
28 + $(CC) $(LDFLAGS) $(CFLAGS) -o ttyplay ttyplay.o io.o
29
30 ttytime: ttytime.o io.o
31 - $(CC) $(CFLAGS) -o ttytime ttytime.o io.o
32 + $(CC) $(LDFLAGS) $(CFLAGS) -o ttytime ttytime.o io.o
33
34 clean:
35 rm -f *.o $(TARGET) ttyrecord *~