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 | 41140e39fa4f5ce0d048e1ab02495d2d6fdeb873 (patch) | |
tree | c69b312492b8ea24f37be6e9b9103c975f32d9d3 /eclass/multilib.eclass | |
parent | RESTRICT="test" and cleanup (diff) | |
download | historical-41140e39fa4f5ce0d048e1ab02495d2d6fdeb873.tar.gz historical-41140e39fa4f5ce0d048e1ab02495d2d6fdeb873.tar.bz2 historical-41140e39fa4f5ce0d048e1ab02495d2d6fdeb873.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}" |