diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-07-20 12:53:04 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-07-20 12:53:04 +0000 |
commit | 9920019ac4a4f319f20d40bad777898cecbd8b7c (patch) | |
tree | 037187e7aefba8a7474274135795fa8465bffd04 | |
parent | EAPI="2" (diff) | |
download | gentoo-2-9920019ac4a4f319f20d40bad777898cecbd8b7c.tar.gz gentoo-2-9920019ac4a4f319f20d40bad777898cecbd8b7c.tar.bz2 gentoo-2-9920019ac4a4f319f20d40bad777898cecbd8b7c.zip |
Use emake -j1 and list the bug for the parallel build failure.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
-rw-r--r-- | sys-process/bcron/ChangeLog | 5 | ||||
-rw-r--r-- | sys-process/bcron/bcron-0.09.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-process/bcron/ChangeLog b/sys-process/bcron/ChangeLog index ea9156a68ae0..cd157b96564b 100644 --- a/sys-process/bcron/ChangeLog +++ b/sys-process/bcron/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-process/bcron # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/bcron/ChangeLog,v 1.11 2009/05/12 09:07:54 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/bcron/ChangeLog,v 1.12 2009/07/20 12:53:04 flameeyes Exp $ + + 20 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org> bcron-0.09.ebuild: + Use emake -j1 and list the bug for the parallel build failure. 12 May 2009; Thilo Bangert <bangert@gentoo.org> files/crontab: reduce chance of race condition - bug #98189 diff --git a/sys-process/bcron/bcron-0.09.ebuild b/sys-process/bcron/bcron-0.09.ebuild index 5b6e0ce750b4..23a7acdc0482 100644 --- a/sys-process/bcron/bcron-0.09.ebuild +++ b/sys-process/bcron/bcron-0.09.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/sys-process/bcron/bcron-0.09.ebuild,v 1.9 2008/03/28 22:49:07 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/bcron/bcron-0.09.ebuild,v 1.10 2009/07/20 12:53:04 flameeyes Exp $ CRON_SYSTEM_CRONTAB="yes" @@ -30,7 +30,8 @@ src_compile() { echo "${D}/usr/bin" > conf-bin echo "$(tc-getCC) ${CFLAGS}" > conf-cc echo "$(tc-getCC) ${LDFLAGS}" > conf-ld - make || die "make failed" #no emake b/c jobserver + # bug #278459 + emake -j1 || die "make failed" } src_install() { |