diff options
author | 2004-04-19 19:45:28 +0000 | |
---|---|---|
committer | 2004-04-19 19:45:28 +0000 | |
commit | 73732bd17607fad1fa2425b9187c31186986ec36 (patch) | |
tree | 6dc1120f3b871bb8ae74cdf8c9bed0b8664c0916 /dev-java | |
parent | automake in DEPEND, bug 46084 (Manifest recommit) (diff) | |
download | gentoo-2-73732bd17607fad1fa2425b9187c31186986ec36.tar.gz gentoo-2-73732bd17607fad1fa2425b9187c31186986ec36.tar.bz2 gentoo-2-73732bd17607fad1fa2425b9187c31186986ec36.zip |
not parallel build safe
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/activation/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/activation/activation-20040331.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/dev-java/activation/ChangeLog b/dev-java/activation/ChangeLog index 43b0aeb3b579..62800200a9d8 100644 --- a/dev-java/activation/ChangeLog +++ b/dev-java/activation/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/activation # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed unde the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/activation/ChangeLog,v 1.1 2004/03/31 22:59:52 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/activation/ChangeLog,v 1.2 2004/04/19 19:45:28 robbat2 Exp $ + + 19 Apr 2004; Robin Johnson,,604-339-5621,604-298-8414 <robbat2@gentoo.org> + activation-20040331.ebuild: + not parallel build safe *activation-20040331 (01 Apr 2004) diff --git a/dev-java/activation/activation-20040331.ebuild b/dev-java/activation/activation-20040331.ebuild index 37a0fc058bf7..3573ad3b3df6 100644 --- a/dev-java/activation/activation-20040331.ebuild +++ b/dev-java/activation/activation-20040331.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/activation/activation-20040331.ebuild,v 1.2 2004/04/01 00:01:49 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/activation/activation-20040331.ebuild,v 1.3 2004/04/19 19:45:28 robbat2 Exp $ inherit java-pkg @@ -16,9 +16,10 @@ DEPEND=">=virtual/jdk-1.4" src_compile() { econf || die - emake || die + # package fails in parallel builds + MAKEOPTS="-j1" emake || die if use doc ; then - emake javadoc || die + MAKEOPTS="-j1" emake javadoc || die fi } |