diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-09 04:40:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-09 04:40:14 +0000 |
commit | bf23dd82876ceba9b6479dcacaf93a3d11f0c753 (patch) | |
tree | 4189ecc28d04bbaf00b541a8865a94344afb9e91 /eclass | |
parent | version bump (diff) | |
download | gentoo-2-bf23dd82876ceba9b6479dcacaf93a3d11f0c753.tar.gz gentoo-2-bf23dd82876ceba9b6479dcacaf93a3d11f0c753.tar.bz2 gentoo-2-bf23dd82876ceba9b6479dcacaf93a3d11f0c753.zip |
dont enable o32 for mips64 multilib for now
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/multilib.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass index 5f987c4c00e2..5271819fb9fd 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.40 2005/10/07 05:37:16 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.41 2005/10/09 04:40:14 vapier Exp $ # # Author: Jeremy Huddleston <eradicator@gentoo.org> # @@ -552,7 +552,7 @@ get_libname() { # This is for the toolchain to setup profile variables when pulling in # a crosscompiler (and thus they aren't set in the profile) multilib_env() { - local CTARGET=$1 + local CTARGET=${1:-${CTARGET}} local CTARGET_post=${CTARGET#*-} case ${CTARGET} in @@ -591,7 +591,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*) |