diff options
author | 2011-03-18 19:13:54 +0000 | |
---|---|---|
committer | 2011-03-18 19:13:54 +0000 | |
commit | f1eb1673941883286a4488fd10dbc3b1c69f594e (patch) | |
tree | 23672aa7fffc4692829f50884c6ba5576bffa748 /eclass/multilib.eclass | |
parent | use "lib" for x86 ABI when SYMLINK_LIBDIR=no (diff) | |
download | historical-f1eb1673941883286a4488fd10dbc3b1c69f594e.tar.gz historical-f1eb1673941883286a4488fd10dbc3b1c69f594e.tar.bz2 historical-f1eb1673941883286a4488fd10dbc3b1c69f594e.zip |
fix typo in SYMLINK_LIB name
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 a260d09818d7..9a603d3fa71d 100644 --- a/eclass/multilib.eclass +++ b/eclass/multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.86 2011/03/18 19:12:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.87 2011/03/18 19:13:54 vapier Exp $ # @ECLASS: multilib.eclass # @MAINTAINER: @@ -582,7 +582,7 @@ multilib_env() { export CHOST_x86=${CTARGET/x86_64/i686} export CTARGET_x86=${CHOST_x86} export CDEFINE_x86="__i386__" - if [[ ${SYMLINK_LIBDIR} == "yes" ]] ; then + if [[ ${SYMLINK_LIB} == "yes" ]] ; then export LIBDIR_x86="lib32" else export LIBDIR_x86="lib" |