diff options
author | Michael Weber <xmw@gentoo.org> | 2010-09-16 15:01:42 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2010-09-16 15:01:42 +0000 |
commit | b469a7b7357eb22cd4853871fa89e4537bee15c9 (patch) | |
tree | d5ab1c6c597feaa35ffd91a61da3d3e34751bc6d /net-mail | |
parent | Add prefix keywords, bug 337632 (diff) | |
download | gentoo-2-b469a7b7357eb22cd4853871fa89e4537bee15c9.tar.gz gentoo-2-b469a7b7357eb22cd4853871fa89e4537bee15c9.tar.bz2 gentoo-2-b469a7b7357eb22cd4853871fa89e4537bee15c9.zip |
Fix parallel make issue (bug #337419).
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/fdm/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/fdm/files/fdm-1.5-r1-GNUmakefile.patch | 10 | ||||
-rw-r--r-- | net-mail/fdm/files/fdm-1.6-r1-GNUmakefile.patch | 13 |
3 files changed, 21 insertions, 8 deletions
diff --git a/net-mail/fdm/ChangeLog b/net-mail/fdm/ChangeLog index 261d0160404d..a48418489bfa 100644 --- a/net-mail/fdm/ChangeLog +++ b/net-mail/fdm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/fdm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fdm/ChangeLog,v 1.2 2010/09/12 19:12:24 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/fdm/ChangeLog,v 1.3 2010/09/16 15:01:42 xmw Exp $ + + 16 Sep 2010; Michael Weber <xmw@gentoo.org> + files/fdm-1.5-r1-GNUmakefile.patch, files/fdm-1.6-r1-GNUmakefile.patch: + Fix parallel make issue (bug #337419). *fdm-1.6-r1 (12 Sep 2010) *fdm-1.5-r1 (12 Sep 2010) diff --git a/net-mail/fdm/files/fdm-1.5-r1-GNUmakefile.patch b/net-mail/fdm/files/fdm-1.5-r1-GNUmakefile.patch index c7f376480e74..25c9d31ac6c2 100644 --- a/net-mail/fdm/files/fdm-1.5-r1-GNUmakefile.patch +++ b/net-mail/fdm/files/fdm-1.5-r1-GNUmakefile.patch @@ -1,5 +1,5 @@ ---- /tmp/GNUmakefile 2010-09-12 21:04:08.708000248 +0200 -+++ GNUmakefile 2010-09-12 21:06:28.265000260 +0200 +--- GNUmakefile 2010-09-16 16:52:24.770218555 +0200 ++++ GNUmakefile 2010-09-16 16:53:45.316542956 +0200 @@ -62,7 +62,7 @@ endif @@ -18,8 +18,12 @@ depend: $(SRCS) $(CC) $(CPPFLAGS) -MM $(SRCS) > .depend -@@ -99,8 +99,8 @@ +@@ -97,10 +97,12 @@ + y.tab.c y.tab.h: parse.y + $(YACC) $(YFLAGS) $< ++lex.o: y.tab.h ++ install: $(INSTALLBIN) $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) - $(INSTALLMAN) $(PROG).1 $(DESTDIR)$(PREFIX)/man/man1/$(PROG).1 diff --git a/net-mail/fdm/files/fdm-1.6-r1-GNUmakefile.patch b/net-mail/fdm/files/fdm-1.6-r1-GNUmakefile.patch index 8780c4a2908f..4ee880d63d94 100644 --- a/net-mail/fdm/files/fdm-1.6-r1-GNUmakefile.patch +++ b/net-mail/fdm/files/fdm-1.6-r1-GNUmakefile.patch @@ -1,5 +1,5 @@ ---- /tmp/GNUmakefile 2010-09-12 20:52:36.904000246 +0200 -+++ GNUmakefile 2010-09-12 21:00:52.209000216 +0200 +--- GNUmakefile 2010-09-16 16:39:16.656504861 +0200 ++++ GNUmakefile 2010-09-16 16:47:13.451721307 +0200 @@ -16,7 +16,7 @@ CC= gcc @@ -23,7 +23,7 @@ ifdef COURIER CFLAGS+= -DLOOKUP_COURIER -LIBS+= -lcourierauth -+LIBS+= -L/usr/lib64/courier-authlib -lcourierauth ++LIBS+= -L/usr/lib/courier-authlib -lcourierauth endif ifdef PCRE @@ -36,7 +36,12 @@ depend: $(SRCS) $(CC) $(CPPFLAGS) -MM $(SRCS) > .depend -@@ -115,10 +115,10 @@ +@@ -112,13 +112,15 @@ + y.tab.c y.tab.h: parse.y + $(YACC) $(YFLAGS) $< + ++lex.o: y.tab.h ++ install: $(INSTALLDIR) $(DESTDIR)$(PREFIX)/bin $(INSTALLBIN) $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG) |