diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-07-27 17:31:47 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-07-27 17:31:47 +0000 |
commit | e30d04e10c412769ed6f5b9b1c38cc5762bf73cd (patch) | |
tree | a1b301c5e31c7f40503eeb15235ada361ee5a3b9 /eclass | |
parent | Stable for HPPA (bug #478344). (diff) | |
download | gentoo-2-e30d04e10c412769ed6f5b9b1c38cc5762bf73cd.tar.gz gentoo-2-e30d04e10c412769ed6f5b9b1c38cc5762bf73cd.tar.bz2 gentoo-2-e30d04e10c412769ed6f5b9b1c38cc5762bf73cd.zip |
Add support for freebsd, bug #475294 by Yuta SATOH
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/multilib-build.eclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index 075075b2a26e..16db23530cdc 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.15 2013/07/11 06:57:18 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.16 2013/07/27 17:31:47 aballier Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -33,6 +33,8 @@ _MULTILIB_FLAGS=( abi_x86_32:x86 abi_x86_64:amd64 abi_x86_x32:x32 + abi_x86_32:x86_fbsd + abi_x86_64:amd64_fbsd ) # @ECLASS-VARIABLE: MULTILIB_USEDEP @@ -293,9 +295,9 @@ _EOF_ # XXX: get abi_* directly local abi_flag case "${ABI}" in - amd64) + amd64|amd64_fbsd) abi_flag=abi_x86_64;; - x86) + x86|x86_fbsd) abi_flag=abi_x86_32;; x32) abi_flag=abi_x86_x32;; |