diff options
author | Piotr Jaroszyński <peper@gentoo.org> | 2007-07-01 23:14:58 +0000 |
---|---|---|
committer | Piotr Jaroszyński <peper@gentoo.org> | 2007-07-01 23:14:58 +0000 |
commit | 91474ea82ec432222d677ea50d3ba2651cc56ce6 (patch) | |
tree | 49a9968df116b565aa31e0aa0e810a1c39ba1763 /eclass/multilib.eclass | |
parent | RESTRICT="test" and cleanup (diff) | |
download | gentoo-2-91474ea82ec432222d677ea50d3ba2651cc56ce6.tar.gz gentoo-2-91474ea82ec432222d677ea50d3ba2651cc56ce6.tar.bz2 gentoo-2-91474ea82ec432222d677ea50d3ba2651cc56ce6.zip |
(QA) RESTRICT="multilib-pkg-force" -> EMULTILIB_PKG="true" (2/2)
Diffstat (limited to 'eclass/multilib.eclass')
-rw-r--r-- | eclass/multilib.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass index 6f9c24702166..f9750c8b1ea9 100644 --- a/eclass/multilib.eclass +++ b/eclass/multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.62 2007/07/01 22:08:15 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.63 2007/07/01 23:14:58 peper Exp $ # # Maintainer: amd64@gentoo.org / toolchain@gentoo.org # @@ -212,8 +212,7 @@ get_install_abis() { return 0 fi - if hasq multilib-pkg-force ${RESTRICT} || [[ ${EMULTILIB_PKG} == "true" ]] - then + if [[ ${EMULTILIB_PKG} == "true" ]] ; then for x in ${MULTILIB_ABIS} ; do if [[ ${x} != "${DEFAULT_ABI}" ]] ; then hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |