diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2010-08-14 21:31:29 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2010-08-14 21:31:29 +0000 |
commit | 051ca77c90aaf55d3aab61defe111d65ebb937e5 (patch) | |
tree | 2f0151ea5fe03e878776485a95bb23443f1aac7e /eclass | |
parent | Fix quoting (diff) | |
download | gentoo-2-051ca77c90aaf55d3aab61defe111d65ebb937e5.tar.gz gentoo-2-051ca77c90aaf55d3aab61defe111d65ebb937e5.tar.bz2 gentoo-2-051ca77c90aaf55d3aab61defe111d65ebb937e5.zip |
Fix quoting
Diffstat (limited to '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 } |