summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2005-02-03 05:52:51 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2005-02-03 05:52:51 +0000
commit2a1f8732236364d86a43a31993b2e047f75c8363 (patch)
treea49ee83de8db3ee14554c60e6c819512e16af586
parent(Portage version: 2.0.51-r15) (Manifest recommit) (diff)
downloadgentoo-2-2a1f8732236364d86a43a31993b2e047f75c8363.tar.gz
gentoo-2-2a1f8732236364d86a43a31993b2e047f75c8363.tar.bz2
gentoo-2-2a1f8732236364d86a43a31993b2e047f75c8363.zip
Removing get_abi_order since all ebuild have been converted to use get_install_abis.
-rw-r--r--eclass/multilib.eclass13
1 files changed, 4 insertions, 9 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass
index 40f19274b52f..d6d798b3b71b 100644
--- a/eclass/multilib.eclass
+++ b/eclass/multilib.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.17 2005/02/03 05:29:07 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.18 2005/02/03 05:52:51 eradicator Exp $
#
# Author: Jeremy Huddleston <eradicator@gentoo.org>
#
@@ -187,11 +187,6 @@ get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; }
# Return a list of the ABIs we want to install for with
# the last one in the list being the default.
-get_abi_order() {
- ewarn "Please update your ebuild to use get_install_abis instead of get_abi_order"
- get_install_abis ${@}
-}
-
get_install_abis() {
local order=""
@@ -277,14 +272,14 @@ get_all_libdirs() {
# if we're in the last (or only) run through src_{unpack,compile,install}
is_final_abi() {
! has_multilib_profile && return 0
- local ALL_ABIS=$(get_abi_order)
+ local ALL_ABIS=$(get_install_abis)
local LAST_ABI=${ALL_ABIS/* /}
[ "${LAST_ABI}" = "${ABI}" ]
}
# echo the number of ABIs we will be installing for
number_abis() {
- get_abi_order | wc -w
+ get_install_abis | wc -w
}
# get_ml_incdir [<include dir> [<ABI>]]
@@ -359,7 +354,7 @@ prep_ml_includes() {
for dir in ${dirs}; do
local args=${dir}
local abi
- for abi in $(get_abi_order); do
+ for abi in $(get_install_abis); do
args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}"
done
create_ml_includes ${args}