diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-02-25 19:49:52 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-02-25 19:49:52 +0000 |
commit | 5d40a135a511a0d36ab2555f826681b3be31e637 (patch) | |
tree | 389b40d5f0afebb367393bb419001af5eea2091a /app-misc/ttyrec/files | |
parent | remove old 2.x versions (diff) | |
download | historical-5d40a135a511a0d36ab2555f826681b3be31e637.tar.gz historical-5d40a135a511a0d36ab2555f826681b3be31e637.tar.bz2 historical-5d40a135a511a0d36ab2555f826681b3be31e637.zip |
Revision bump: EAPI 5, base eclass, QA fixes. Respect LDFLAGS, wrt bug #331843, patch by Olivier Huber <oli.huber AT gmail.com>
Package-Manager: portage-2.2.0_alpha163/cvs/Linux x86_64
Manifest-Sign-Key: 0x1F357D42
Diffstat (limited to 'app-misc/ttyrec/files')
-rw-r--r-- | app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch b/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch new file mode 100644 index 000000000000..5b2393ce5393 --- /dev/null +++ b/app-misc/ttyrec/files/ttyrec-1.0.8-ldflags.patch @@ -0,0 +1,19 @@ +--- Makefile~ 2010-08-09 14:01:24.351716328 -0400 ++++ Makefile 2010-08-09 14:00:45.981716329 -0400 +@@ -10,13 +10,13 @@ + all: $(TARGET) + + ttyrec: ttyrec.o io.o +- $(CC) $(CFLAGS) -o ttyrec ttyrec.o io.o ++ $(CC) $(LDFLAGS) $(CFLAGS) -o ttyrec ttyrec.o io.o + + ttyplay: ttyplay.o io.o +- $(CC) $(CFLAGS) -o ttyplay ttyplay.o io.o ++ $(CC) $(LDFLAGS) $(CFLAGS) -o ttyplay ttyplay.o io.o + + ttytime: ttytime.o io.o +- $(CC) $(CFLAGS) -o ttytime ttytime.o io.o ++ $(CC) $(LDFLAGS) $(CFLAGS) -o ttytime ttytime.o io.o + + clean: + rm -f *.o $(TARGET) ttyrecord *~ |