diff options
author | Matthieu Sozeau <mattam@gentoo.org> | 2005-02-17 20:48:17 +0000 |
---|---|---|
committer | Matthieu Sozeau <mattam@gentoo.org> | 2005-02-17 20:48:17 +0000 |
commit | f69570e497f57693cc64c90c4a10903014a9f70b (patch) | |
tree | e3dd621f1550a751a7f00ba0096f1bb6759cf38a /dev-ml/res | |
parent | Giving full USE flag options to ppc64 as per bug #82341. (diff) | |
download | gentoo-2-f69570e497f57693cc64c90c4a10903014a9f70b.tar.gz gentoo-2-f69570e497f57693cc64c90c4a10903014a9f70b.tar.bz2 gentoo-2-f69570e497f57693cc64c90c4a10903014a9f70b.zip |
Fix parallel builds bug
Diffstat (limited to 'dev-ml/res')
-rw-r--r-- | dev-ml/res/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/res/res-2.1.1.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-ml/res/ChangeLog b/dev-ml/res/ChangeLog index 0ce37883c6f5..6875cb2b395e 100644 --- a/dev-ml/res/ChangeLog +++ b/dev-ml/res/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/res -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.2 2004/09/30 18:36:25 mattam Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/ChangeLog,v 1.3 2005/02/17 20:48:17 mattam Exp $ + + 17 Feb 2005; Matthieu Sozeau <mattam@gentoo.org> res-2.1.1.ebuild: + Add -j1, doesn't support parallel builds. 30 Sep 2004; Matthieu Sozeau <mattam@gentoo.org> res-2.1.1.ebuild: Mark stable on amd64, fixes bug #65091 diff --git a/dev-ml/res/res-2.1.1.ebuild b/dev-ml/res/res-2.1.1.ebuild index 9c990c58cbb8..0a50ef137e89 100644 --- a/dev-ml/res/res-2.1.1.ebuild +++ b/dev-ml/res/res-2.1.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/res-2.1.1.ebuild,v 1.3 2004/09/30 18:36:25 mattam Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/res/res-2.1.1.ebuild,v 1.4 2005/02/17 20:48:17 mattam Exp $ inherit findlib @@ -15,7 +15,7 @@ KEYWORDS="x86 ppc amd64" IUSE="doc" src_compile() { - emake all || die + emake -j1 all || die if use doc; then cd lib && make htdoc |