diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2006-07-17 14:30:18 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2006-07-17 14:30:18 +0000 |
commit | 4cb284c5cb9e0524afe8b8f85438e8d63c9ff90a (patch) | |
tree | f5762eb480f70ba61ac0ea84087af02fede4c372 /eclass | |
parent | Bump to 2.8.20 and fix bug #140222 (diff) | |
download | historical-4cb284c5cb9e0524afe8b8f85438e8d63c9ff90a.tar.gz historical-4cb284c5cb9e0524afe8b8f85438e8d63c9ff90a.tar.bz2 historical-4cb284c5cb9e0524afe8b8f85438e8d63c9ff90a.zip |
Only set IUSE="gcc64" for linux-headers; add "gcc64" flag to use.local.desc; fix bug #140364.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 5ba4eda47af0..bce42a5741b7 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -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/eclass/kernel-2.eclass,v 1.181 2006/07/16 06:27:58 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.182 2006/07/17 14:30:18 plasmaroo Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -299,7 +299,7 @@ if [[ ${ETYPE} == sources ]]; then IUSE="symlink build doc" elif [[ ${ETYPE} == headers ]]; then DESCRIPTION="Linux system headers" - IUSE="gcc64" + [[ "${PN}" == 'linux-headers' ]] && IUSE="gcc64" # Since we should NOT honour KBUILD_OUTPUT in headers # lets unset it here. |