diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-05-07 17:33:49 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-05-07 17:33:49 +0000 |
commit | 8085e0a11da730f5b4877104f9b6f7c3b8e007b4 (patch) | |
tree | b415ac7c4ac2b550cc1941e3b20ad4659fa15bf7 /eclass/multilib-build.eclass | |
parent | x86 stable wrt bug #504210 (diff) | |
download | gentoo-2-8085e0a11da730f5b4877104f9b6f7c3b8e007b4.tar.gz gentoo-2-8085e0a11da730f5b4877104f9b6f7c3b8e007b4.tar.bz2 gentoo-2-8085e0a11da730f5b4877104f9b6f7c3b8e007b4.zip |
Use amd64 headers for i686 when USE=-abi_x86_32 to maintain compatibility with current state of emul-linux. Fixes bug #509556.
Diffstat (limited to 'eclass/multilib-build.eclass')
-rw-r--r-- | eclass/multilib-build.eclass | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index ddf11cc90708..fd5b89347b19 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.46 2014/05/01 09:52:27 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.47 2014/05/07 17:33:49 mgorny Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -454,6 +454,14 @@ _EOF_ # Note: match a space afterwards to avoid collision potential. sed -e "/${abi_flag} /s&error.*&include <${CHOST}${f}>&" \ -i "${ED}/tmp/multilib-include${f}" || die + + # Hack for emul-linux-x86 compatibility. + # It assumes amd64 will come after x86, and will use amd64 + # headers if no specific x86 headers were installed. + if [[ ${ABI} == amd64 ]]; then + sed -e "/abi_x86_32 /s&error.*&include <${CHOST}${f}>&" \ + -i "${ED}/tmp/multilib-include${f}" || die + fi fi done fi |