diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-11-14 06:00:02 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-11-14 06:00:02 +0000 |
commit | 45e7f2ff3029ae0a09396044274c065857222748 (patch) | |
tree | bad006e64534e966b5982492b881c18a224b6aed /dev-libs/klibc | |
parent | Stable on amd64 wrt bug 191475 (diff) | |
download | gentoo-2-45e7f2ff3029ae0a09396044274c065857222748.tar.gz gentoo-2-45e7f2ff3029ae0a09396044274c065857222748.tar.bz2 gentoo-2-45e7f2ff3029ae0a09396044274c065857222748.zip |
Bug #199048, we need to ignore KBUILD_OUTPUT.
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-libs/klibc')
-rw-r--r-- | dev-libs/klibc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/klibc/klibc-1.5.7-r1.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/dev-libs/klibc/ChangeLog b/dev-libs/klibc/ChangeLog index 685d997b2302..36282c272091 100644 --- a/dev-libs/klibc/ChangeLog +++ b/dev-libs/klibc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/klibc # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.50 2007/11/12 10:36:29 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.51 2007/11/14 06:00:02 robbat2 Exp $ + + 14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> klibc-1.5.7-r1.ebuild: + Bug #199048, we need to ignore KBUILD_OUTPUT. *klibc-1.5.7-r1 (12 Nov 2007) diff --git a/dev-libs/klibc/klibc-1.5.7-r1.ebuild b/dev-libs/klibc/klibc-1.5.7-r1.ebuild index 408f7890f42e..5c2ad1661920 100644 --- a/dev-libs/klibc/klibc-1.5.7-r1.ebuild +++ b/dev-libs/klibc/klibc-1.5.7-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.7-r1.ebuild,v 1.1 2007/11/12 10:36:29 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.7-r1.ebuild,v 1.2 2007/11/14 06:00:02 robbat2 Exp $ # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007: # This still needs major work. @@ -102,6 +102,7 @@ src_compile() { # NOT your kernel. PPC64-32ul would choose 'ppc' for example. defconfig=$(kernel_defconfig ${ARCH}) unset ABI ARCH # Unset these, because they interfere + unset KBUILD_OUTPUT # we are using a private copy cd "${KS}" emake ${defconfig} || die "No defconfig" @@ -150,6 +151,7 @@ src_install() { fi unset ABI ARCH # Unset these, because they interfere + unset KBUILD_OUTPUT # we are using a private copy emake \ EXTRA_KLIBCAFLAGS="-Wa,--noexecstack" \ |