diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-07 02:46:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-07 02:46:28 +0000 |
commit | 7f9d1b495596c42c554ec0fa9143c816ebb3459f (patch) | |
tree | db66139782be70dc4beb8a71a59d6bc220dbac17 /eclass/multilib.eclass | |
parent | Allow gnupg / mutt interaction (diff) | |
download | gentoo-2-7f9d1b495596c42c554ec0fa9143c816ebb3459f.tar.gz gentoo-2-7f9d1b495596c42c554ec0fa9143c816ebb3459f.tar.bz2 gentoo-2-7f9d1b495596c42c554ec0fa9143c816ebb3459f.zip |
x86 abi on 64bit host is "lib32" not "lib"
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 4a4f7abf3ec0..ed42b8cc5156 100644 --- a/eclass/multilib.eclass +++ b/eclass/multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.79 2010/08/14 21:31:29 truedfx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.80 2011/03/07 02:46:28 vapier Exp $ # @ECLASS: multilib.eclass # @MAINTAINER: @@ -581,7 +581,7 @@ multilib_env() { export CHOST_x86=${CTARGET/x86_64/i686} export CTARGET_x86=${CHOST_x86} export CDEFINE_x86="__i386__" - export LIBDIR_x86="lib" + export LIBDIR_x86="lib32" export CFLAGS_amd64=${CFLAGS_amd64--m64} export CHOST_amd64=${CTARGET} |