diff options
author | 2005-01-23 20:47:42 +0000 | |
---|---|---|
committer | 2005-01-23 20:47:42 +0000 | |
commit | 98834c69e6246a58ac10af59f751b0eeb34e6b11 (patch) | |
tree | 40a873c7f6f159f5098ffcc30440c0ac2e6aff5a /eclass/eutils.eclass | |
parent | Version bump, bug #79221. (diff) | |
download | gentoo-2-98834c69e6246a58ac10af59f751b0eeb34e6b11.tar.gz gentoo-2-98834c69e6246a58ac10af59f751b0eeb34e6b11.tar.bz2 gentoo-2-98834c69e6246a58ac10af59f751b0eeb34e6b11.zip |
Correct ARCH setting on sparc64.
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 0320c9a7db8b..c10e3bd23b22 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.141 2005/01/12 00:21:53 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.142 2005/01/23 20:47:42 eradicator Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -1494,6 +1494,7 @@ set_arch_to_kernel() { amd64) export ARCH="x86_64";; hppa) export ARCH="parisc";; mips) export ARCH="mips";; + sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! *) export ARCH="${ARCH}";; esac } |