diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-17 04:17:53 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-17 04:17:53 +0000 |
commit | 211d11c1366b95d9c7fd03dba593f66ed187c189 (patch) | |
tree | 1b742fb4c3776c5508e8dfb9216d7b248f516542 /eclass/multilib.eclass | |
parent | Use ${T} to store multilib-includes rather than include.${ABI}. (diff) | |
download | gentoo-2-211d11c1366b95d9c7fd03dba593f66ed187c189.tar.gz gentoo-2-211d11c1366b95d9c7fd03dba593f66ed187c189.tar.bz2 gentoo-2-211d11c1366b95d9c7fd03dba593f66ed187c189.zip |
Committing the one I meant to commit last time (was missing a line).
Diffstat (limited to 'eclass/multilib.eclass')
-rw-r--r-- | eclass/multilib.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass index 2734679afb88..e33ac40e361e 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.11 2005/01/17 04:14:56 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.12 2005/01/17 04:17:53 eradicator Exp $ # # Author: Jeremy Huddleston <eradicator@gentoo.org> # @@ -248,6 +248,12 @@ prep_ml_includes() { pushd ${base} find . | cpio -pmd --no-preserve-owner ${D} popd + local args + for abi in $(get_abi_order); do + args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" + done + create_ml_includes ${args} + fi fi } |