diff options
author | Chris White <chriswhite@gentoo.org> | 2004-08-21 19:04:41 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2004-08-21 19:04:41 +0000 |
commit | 3ff92d46b3ace67448b0acae993f23e170f0e86c (patch) | |
tree | d0d8e80f0a5ee02da6212dc7988e7d6509fa72cc /dev-lang/fpc-source | |
parent | 60844 (diff) | |
download | historical-3ff92d46b3ace67448b0acae993f23e170f0e86c.tar.gz historical-3ff92d46b3ace67448b0acae993f23e170f0e86c.tar.bz2 historical-3ff92d46b3ace67448b0acae993f23e170f0e86c.zip |
<fpc-source> I don't like anything above -j1. <ChrisWhite> why me! Fixing some parallel make borkage.
Diffstat (limited to 'dev-lang/fpc-source')
-rw-r--r-- | dev-lang/fpc-source/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/fpc-source/Manifest | 4 | ||||
-rw-r--r-- | dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild | 7 |
3 files changed, 11 insertions, 6 deletions
diff --git a/dev-lang/fpc-source/ChangeLog b/dev-lang/fpc-source/ChangeLog index b98cbad2ccfd..4659ede727e8 100644 --- a/dev-lang/fpc-source/ChangeLog +++ b/dev-lang/fpc-source/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/fpc-source # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-source/ChangeLog,v 1.2 2004/08/21 18:18:46 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-source/ChangeLog,v 1.3 2004/08/21 19:04:41 chriswhite Exp $ + + 22 Aug 2004; Chris White <chriswhite@gentoo.org> + fpc-source-1.9.5_pre20040820.ebuild: + Changed to emake -j1 since the makefile apparently doesn't like parallel makes. 22 Aug 2004; Chris White <chriswhite@gentoo.org> fpc-source-1.9.5_pre20040820.ebuild: diff --git a/dev-lang/fpc-source/Manifest b/dev-lang/fpc-source/Manifest index 21be1a5b6eeb..060c66b816ae 100644 --- a/dev-lang/fpc-source/Manifest +++ b/dev-lang/fpc-source/Manifest @@ -1,4 +1,4 @@ MD5 f5f1522837a3398846f77d381fda47ec metadata.xml 226 -MD5 76bdfd33d1da961f5a04cb98eaeca42f fpc-source-1.9.5_pre20040820.ebuild 1653 -MD5 b79f1bc08469f35991c0b525cc3cc586 ChangeLog 535 +MD5 bde9b29114d4adf1ac8535d4db41c4e2 fpc-source-1.9.5_pre20040820.ebuild 1712 +MD5 8bc2eb5048b535c5df1e2099df041a45 ChangeLog 708 MD5 3197b41dcf78a69bd6aba5c9f97a3cb7 files/digest-fpc-source-1.9.5_pre20040820 141 diff --git a/dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild b/dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild index c350ed6b7dda..86441f786b44 100644 --- a/dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild +++ b/dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild,v 1.2 2004/08/21 18:18:46 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-source/fpc-source-1.9.5_pre20040820.ebuild,v 1.3 2004/08/21 19:04:41 chriswhite Exp $ inherit eutils @@ -21,7 +21,8 @@ src_compile() { cd ${S} einfo "Building the fpc compiler and units" - emake \ + # have to use -j1 as it doesn't seem to like -j2+ + emake -j1 \ build \ OS_TARGET=linux \ PP=${S}/ppc386 \ @@ -32,7 +33,7 @@ src_compile() { src_install() { einfo "Installing the fpc compiler and units" - emake \ + emake -j1 \ install \ OS_TARGET=linux \ PP=${S}/ppc386 \ |