diff options
author | 2010-08-14 21:31:29 +0000 | |
---|---|---|
committer | 2010-08-14 21:31:29 +0000 | |
commit | a5fac1f6f6d46ac0b05ec79faee0f477b1107ea6 (patch) | |
tree | f68cf15e73a12f12603128f6cbc1992a36c7c524 /eclass/multilib.eclass | |
parent | Fix quoting (diff) | |
download | historical-a5fac1f6f6d46ac0b05ec79faee0f477b1107ea6.tar.gz historical-a5fac1f6f6d46ac0b05ec79faee0f477b1107ea6.tar.bz2 historical-a5fac1f6f6d46ac0b05ec79faee0f477b1107ea6.zip |
Fix quoting
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 768a3beaa32c..4a4f7abf3ec0 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.78 2010/05/20 08:22:15 haubi Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.79 2010/08/14 21:31:29 truedfx Exp $ # @ECLASS: multilib.eclass # @MAINTAINER: @@ -701,7 +701,7 @@ multilib_toolchain_setup() { elif [[ ${DEFAULT_ABI_SAVED} == "true" ]] ; then for v in CHOST CBUILD AS CC CXX LD ; do vv="__abi_saved_${v}" - export ${v}=${!vv} + export ${v}="${!vv}" done fi } |