diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-09-07 20:13:08 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-09-07 20:13:08 +0000 |
commit | 41a474234e03f550dc723566634b1e3fbdee1ceb (patch) | |
tree | 1452c024eb80cfeb409d974b28041e9ddc311f1f /sys-libs/glibc | |
parent | Mark 3.6 stable on ia64 (diff) | |
download | gentoo-2-41a474234e03f550dc723566634b1e3fbdee1ceb.tar.gz gentoo-2-41a474234e03f550dc723566634b1e3fbdee1ceb.tar.bz2 gentoo-2-41a474234e03f550dc723566634b1e3fbdee1ceb.zip |
Forcing -j1. Found -j3 making problems on my u2 =(...
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-libs/glibc')
-rw-r--r-- | sys-libs/glibc/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/glibc/glibc-2.3.5-r1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index 284c4ef1ea17..321905d444d6 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/glibc # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.384 2005/09/06 18:34:04 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.385 2005/09/07 20:13:08 eradicator Exp $ + + 07 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org> + glibc-2.3.5-r1.ebuild: + Forcing -j1. Found -j3 making problems on my u2 =(... 06 Sep 2005; Markus Rothe <corsair@gentoo.org> glibc-2.3.5-r1.ebuild: Stable on ppc64 diff --git a/sys-libs/glibc/glibc-2.3.5-r1.ebuild b/sys-libs/glibc/glibc-2.3.5-r1.ebuild index 7cb79417383a..cb512551b036 100644 --- a/sys-libs/glibc/glibc-2.3.5-r1.ebuild +++ b/sys-libs/glibc/glibc-2.3.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.5-r1.ebuild,v 1.24 2005/09/06 18:34:04 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.5-r1.ebuild,v 1.25 2005/09/07 20:13:08 eradicator Exp $ # Here's how the cross-compile logic breaks down ... # CTARGET - machine that will target the binaries @@ -223,14 +223,14 @@ toolchain-glibc_src_compile() { if want_linuxthreads ; then glibc_do_configure linuxthreads einfo "Building GLIBC with linuxthreads..." - make PARALLELMFLAGS="${MAKEOPTS}" ${MAKEFLAGS} || die + make PARALLELMFLAGS="-j1" ${MAKEFLAGS} || die fi if want_nptl ; then # ... and then do the optional nptl build unset LD_ASSUME_KERNEL || : glibc_do_configure nptl einfo "Building GLIBC with NPTL..." - make PARALLELMFLAGS="${MAKEOPTS}" ${MAKEFLAGS} || die + make PARALLELMFLAGS="-j1" ${MAKEFLAGS} || die fi } |