diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2009-08-08 23:23:15 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2009-08-08 23:23:15 +0000 |
commit | 7f66cb1dc13175972544dbd9b6c5ee3f51e9a393 (patch) | |
tree | 9925a044fc12cb2da410c796253ff86870b5cb5c /sys-auth | |
parent | stable x86, bug 280695 (diff) | |
download | gentoo-2-7f66cb1dc13175972544dbd9b6c5ee3f51e9a393.tar.gz gentoo-2-7f66cb1dc13175972544dbd9b6c5ee3f51e9a393.tar.bz2 gentoo-2-7f66cb1dc13175972544dbd9b6c5ee3f51e9a393.zip |
Restrict parallel on install. bug #280829
(Portage version: 2.2_rc36/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/policykit/ChangeLog | 5 | ||||
-rw-r--r-- | sys-auth/policykit/policykit-0.9-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys-auth/policykit/ChangeLog b/sys-auth/policykit/ChangeLog index 799760721c7c..9402dc982a09 100644 --- a/sys-auth/policykit/ChangeLog +++ b/sys-auth/policykit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-auth/policykit # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.18 2009/07/06 10:53:44 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.19 2009/08/08 23:23:15 dang Exp $ + + 08 Aug 2009; Daniel Gryniewicz <dang@gentoo.org> policykit-0.9-r1.ebuild: + Restrict parallel on install. bug #280829 06 Jul 2009; Alexey Shvetsov <alexxy@gentoo.org> policykit-0.9-r1.ebuild, policykit-0.92.ebuild: diff --git a/sys-auth/policykit/policykit-0.9-r1.ebuild b/sys-auth/policykit/policykit-0.9-r1.ebuild index be014babe386..7676c2172d71 100644 --- a/sys-auth/policykit/policykit-0.9-r1.ebuild +++ b/sys-auth/policykit/policykit-0.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.3 2009/07/06 10:53:44 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.4 2009/08/08 23:23:15 dang Exp $ inherit autotools bash-completion eutils multilib pam @@ -82,7 +82,7 @@ src_compile() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + emake -j1 DESTDIR="${D}" install || die "emake install failed" dodoc NEWS README AUTHORS ChangeLog |