diff options
-rw-r--r-- | dev-util/pkgconfig/pkgconfig-0.15.0.ebuild | 6 | ||||
-rw-r--r-- | sys-devel/make/make-3.80-r1.ebuild | 6 | ||||
-rw-r--r-- | sys-libs/glibc/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild | 7 |
4 files changed, 19 insertions, 6 deletions
diff --git a/dev-util/pkgconfig/pkgconfig-0.15.0.ebuild b/dev-util/pkgconfig/pkgconfig-0.15.0.ebuild index 9f3795b7e35a..8b1b90930a78 100644 --- a/dev-util/pkgconfig/pkgconfig-0.15.0.ebuild +++ b/dev-util/pkgconfig/pkgconfig-0.15.0.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/dev-util/pkgconfig/pkgconfig-0.15.0.ebuild,v 1.23 2005/04/07 00:49:19 dostrow Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.15.0.ebuild,v 1.24 2005/04/07 04:00:00 dostrow Exp $ inherit gnuconfig flag-o-matic @@ -19,7 +19,9 @@ src_unpack() { unpack ${A} cd ${S} gnuconfig_update - (use ppc64 && use hardened) && replace-flags -O[2-3] -O1 + if use ppc64 && use hardened; then + replace-flags -O[2-3] -O1 + fi } src_install() { diff --git a/sys-devel/make/make-3.80-r1.ebuild b/sys-devel/make/make-3.80-r1.ebuild index 19c94a928e1f..0009a0c2fac9 100644 --- a/sys-devel/make/make-3.80-r1.ebuild +++ b/sys-devel/make/make-3.80-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-devel/make/make-3.80-r1.ebuild,v 1.3 2005/04/07 01:16:20 dostrow Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.80-r1.ebuild,v 1.4 2005/04/07 04:01:22 dostrow Exp $ inherit gnuconfig eutils flag-o-matic @@ -21,7 +21,9 @@ src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${PV}-memory.patch - (use ppc64 && use hardened) && epatch ${FILESDIR}/make-3.80-ppc64-hardened-clock_gettime.patch + if use ppc64 && use hardened; then + epatch ${FILESDIR}/make-3.80-ppc64-hardened-clock_gettime.patch + fi # Detect mips and uclibc systems properly gnuconfig_update } diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index fb71971b3a18..839f95975425 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,11 +1,15 @@ # ChangeLog for sys-libs/glibc # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.334 2005/04/07 00:59:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.335 2005/04/07 03:58:29 dostrow Exp $ 07 Apr 2005; Mike Frysinger <vapier@gentoo.org> glibc-2.3.4.20050125-r1.ebuild: Delete the glibc-compat dir since its useless to us #87739. + 06 Apr 2005; Daniel Ostrow <dostrow@gentoo.org> + glibc-2.3.4.20041102-r1.ebuild: + Drop to -j1 for hardened ppc64 + 03 Apr 2005; Daniel Goller <morfic@gentoo.org> glibc-2.3.4.20050125-r1.ebuild, glibc-2.3.4.20050125.ebuild: marking 20050125 -ppc till breakage can be fixed see bug #87671 diff --git a/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild b/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild index 2558498bc880..3b19351908af 100644 --- a/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild +++ b/sys-libs/glibc/glibc-2.3.4.20041102-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.4.20041102-r1.ebuild,v 1.5 2005/03/25 06:17:28 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild,v 1.6 2005/04/07 03:58:29 dostrow Exp $ inherit eutils multilib flag-o-matic toolchain-funcs versionator @@ -732,6 +732,11 @@ src_compile() { export CPATH=/usr/include/gentoo-multilib/default fi + # hardened ppc64 parallelization periodically fails so drop to -j1 + if use ppc64 && use hardened; then + MAKEOPTS="${MAKEOPTS} -j1" + fi + # do the linuxthreads build unless we're using nptlonly if use !nptlonly ; then glibc_do_configure linuxthreads |