diff options
author | 2009-07-17 18:45:34 +0000 | |
---|---|---|
committer | 2009-07-17 18:45:34 +0000 | |
commit | 1bdb88d8eb41125d811f54a921304af64e0269fe (patch) | |
tree | 313b27f2a4cf13ea41d7074906f45e74b7f80585 /dev-lang | |
parent | ppc stable #274451 (diff) | |
download | gentoo-2-1bdb88d8eb41125d811f54a921304af64e0269fe.tar.gz gentoo-2-1bdb88d8eb41125d811f54a921304af64e0269fe.tar.bz2 gentoo-2-1bdb88d8eb41125d811f54a921304af64e0269fe.zip |
Fixed some parallel make problems.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/tinycobol/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/tinycobol/files/tinycobol-0.64.patch | 32 | ||||
-rw-r--r-- | dev-lang/tinycobol/tinycobol-0.64.ebuild | 4 |
3 files changed, 39 insertions, 3 deletions
diff --git a/dev-lang/tinycobol/ChangeLog b/dev-lang/tinycobol/ChangeLog index 4d1d06341d03..0a0e546d356b 100644 --- a/dev-lang/tinycobol/ChangeLog +++ b/dev-lang/tinycobol/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/tinycobol # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/ChangeLog,v 1.14 2009/07/17 17:29:17 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/ChangeLog,v 1.15 2009/07/17 18:45:34 phosphan Exp $ + + 17 Jul 2009; Patrick Kursawe <phosphan@gentoo.org> + files/tinycobol-0.64.patch: + Fixed some parallel make problems. 17 Jul 2009; Patrick Kursawe <phosphan@gentoo.org> -files/tinycobol-0.63.patch, -tinycobol-0.63.ebuild: diff --git a/dev-lang/tinycobol/files/tinycobol-0.64.patch b/dev-lang/tinycobol/files/tinycobol-0.64.patch index 99734e162b53..b125ca288efe 100644 --- a/dev-lang/tinycobol/files/tinycobol-0.64.patch +++ b/dev-lang/tinycobol/files/tinycobol-0.64.patch @@ -106,3 +106,35 @@ diff -Nru tinycobol-0.64/lib/Makefile.in tinycobol-0.64.new/lib/Makefile.in ACXFLAGS=@ACXFLAGS@ # +--- tinycobol-0.64/compiler/Makefile.in 2009-07-17 19:46:28.000000000 +0200 ++++ tinycobol-0.64/compiler/Makefile.in.new 2009-07-17 20:13:04.000000000 +0200 +@@ -78,14 +78,16 @@ + # strip $@ + + +-scan.c: scan.l ++scan.c: scan.l htcobol.tab.c + $(LEX) -o$@ $< + +-htcobol.tab.c: htcobol.y scan.c ++htcobol.tab.c: htcobol.y + $(YACC) -dv -b htcobol $< + + #htcobgen.o: htcoboly.h htcobol.c + ++reswords.o: htcobol.tab.c reswords.c ++ + htcobol.o: htcoboly.h + $(CCX) $(CCXFLAGS) -c htcobol.c + +--- tinycobol-0.64/Makefile.in 2009-07-17 19:35:54.000000000 +0200 ++++ tinycobol-0.64/Makefile.in.new 2009-07-17 20:14:42.000000000 +0200 +@@ -44,7 +44,7 @@ + all: + @for i in ${subdirs}; do \ + echo Making all in $$i ; \ +- (cd $$i; ${MAKE} all) ; \ ++ (cd $$i; ${MAKE} all) || exit ; \ + done + + install: all diff --git a/dev-lang/tinycobol/tinycobol-0.64.ebuild b/dev-lang/tinycobol/tinycobol-0.64.ebuild index ab4411d82bcb..becedb18113d 100644 --- a/dev-lang/tinycobol/tinycobol-0.64.ebuild +++ b/dev-lang/tinycobol/tinycobol-0.64.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/tinycobol-0.64.ebuild,v 1.1 2008/12/08 22:54:43 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/tinycobol-0.64.ebuild,v 1.2 2009/07/17 18:45:34 phosphan Exp $ inherit eutils |