diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-10-17 08:45:38 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-10-17 08:45:38 +0000 |
commit | f5f57e77458b3cc2408f3a00aef0f7ae68f86a3a (patch) | |
tree | 5c251a465ba79d54559f3ef3d6b3b3572ca983f7 /eclass/multilib.eclass | |
parent | Updated nvclock plug-in. (diff) | |
download | historical-f5f57e77458b3cc2408f3a00aef0f7ae68f86a3a.tar.gz historical-f5f57e77458b3cc2408f3a00aef0f7ae68f86a3a.tar.bz2 historical-f5f57e77458b3cc2408f3a00aef0f7ae68f86a3a.zip |
Fixed mips64's MULTILIB_ABIS. It was missing o32 and thus the compiler profile wasn't getting set right.
Diffstat (limited to 'eclass/multilib.eclass')
-rw-r--r-- | eclass/multilib.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass index 9bbbacba27a3..60a85cfaac56 100644 --- a/eclass/multilib.eclass +++ b/eclass/multilib.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/multilib.eclass,v 1.45 2005/10/13 15:13:14 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.46 2005/10/17 08:45:38 eradicator Exp $ # # Author: Jeremy Huddleston <eradicator@gentoo.org> # @@ -593,7 +593,7 @@ multilib_env() { export CDEFINE_n64="_MIPS_SIM == _ABI64" export LIBDIR_n64="lib64" - export MULTILIB_ABIS="n64 n32" # o32 + export MULTILIB_ABIS="n64 n32 o32" export DEFAULT_ABI="n32" ;; powerpc64*) |