diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-06-16 19:50:33 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-06-16 19:50:33 +0000 |
commit | 002c0f41fbba7e24e0c2b8089e068b487d9a0bee (patch) | |
tree | 2aca41b75785ad7e610a205d600ad8d7606e6f52 /dev-libs/icu/icu-4.2.1.ebuild | |
parent | Adding a block against dev-python/shiboken (diff) | |
download | gentoo-2-002c0f41fbba7e24e0c2b8089e068b487d9a0bee.tar.gz gentoo-2-002c0f41fbba7e24e0c2b8089e068b487d9a0bee.tar.bz2 gentoo-2-002c0f41fbba7e24e0c2b8089e068b487d9a0bee.zip |
Makefiles are parallel-unsafe, so adding -j1 until it is properly fixed. See bug #272328
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/icu/icu-4.2.1.ebuild')
-rw-r--r-- | dev-libs/icu/icu-4.2.1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-libs/icu/icu-4.2.1.ebuild b/dev-libs/icu/icu-4.2.1.ebuild index 9b87ca6f8cf6..641739f88d8a 100644 --- a/dev-libs/icu/icu-4.2.1.ebuild +++ b/dev-libs/icu/icu-4.2.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.2.1.ebuild,v 1.12 2009/12/14 18:33:14 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.2.1.ebuild,v 1.13 2010/06/16 19:50:33 patrick Exp $ EAPI="2" @@ -67,11 +67,11 @@ src_configure() { } src_test() { - emake check || die "emake check failed" + emake -j1 check || die "emake check failed" } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + emake -j1 DESTDIR="${D}" install || die "emake install failed" dohtml ../readme.html dodoc ../unicode-license.txt |