diff options
author | 2010-06-16 19:50:33 +0000 | |
---|---|---|
committer | 2010-06-16 19:50:33 +0000 | |
commit | 3eb316665acec4523c9d3915f89ed5ca2fd1ce6d (patch) | |
tree | 67d91090d8eefdff7179ee669d79d983f129846b /dev-libs/icu/icu-4.4.1.ebuild | |
parent | Adding a block against dev-python/shiboken (diff) | |
download | historical-3eb316665acec4523c9d3915f89ed5ca2fd1ce6d.tar.gz historical-3eb316665acec4523c9d3915f89ed5ca2fd1ce6d.tar.bz2 historical-3eb316665acec4523c9d3915f89ed5ca2fd1ce6d.zip |
Makefiles are parallel-unsafe, so adding -j1 until it is properly fixed. See bug #272328
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/icu/icu-4.4.1.ebuild')
-rw-r--r-- | dev-libs/icu/icu-4.4.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-libs/icu/icu-4.4.1.ebuild b/dev-libs/icu/icu-4.4.1.ebuild index d80313e87a6a..dfc021d75f86 100644 --- a/dev-libs/icu/icu-4.4.1.ebuild +++ b/dev-libs/icu/icu-4.4.1.ebuild @@ -1,6 +1,6 @@ # 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.4.1.ebuild,v 1.4 2010/06/12 16:36:46 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.4.1.ebuild,v 1.5 2010/06/16 19:50:33 patrick Exp $ EAPI="3" @@ -63,11 +63,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 |