summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-03-18 21:58:15 +0000
committerMike Frysinger <vapier@gentoo.org>2011-03-18 21:58:15 +0000
commit416e9c2a8765b83d6ab1fea903504da37c21ac1f (patch)
treed2658640a3160f37a91c0782160ff46589681711 /eclass
parentrewrite number_abis in pure bash (diff)
downloadhistorical-416e9c2a8765b83d6ab1fea903504da37c21ac1f.tar.gz
historical-416e9c2a8765b83d6ab1fea903504da37c21ac1f.tar.bz2
historical-416e9c2a8765b83d6ab1fea903504da37c21ac1f.zip
fix typos in get_install_abis ... not that this code gets used as no one seems to set EMULTILIB_PKG
Diffstat (limited to 'eclass')
-rw-r--r--eclass/multilib.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass
index 3825764cca0a..e92a81b0dd5b 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.88 2011/03/18 21:56:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.89 2011/03/18 21:58:15 vapier Exp $
# @ECLASS: multilib.eclass
# @MAINTAINER:
@@ -182,10 +182,10 @@ get_install_abis() {
if [[ ${EMULTILIB_PKG} == "true" ]] ; then
for x in ${MULTILIB_ABIS} ; do
if [[ ${x} != "${DEFAULT_ABI}" ]] ; then
- hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}"
+ hasq ${x} ${ABI_DENY} || order="${order} ${x}"
fi
done
- hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}"
+ hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${order} ${DEFAULT_ABI}"
if [[ -n ${ABI_ALLOW} ]] ; then
local ordera=""