From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1K2jN8-0002oD-Jr for garchives@archives.gentoo.org; Sun, 01 Jun 2008 08:57:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D260E0444; Sun, 1 Jun 2008 08:57:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 67C72E0444 for ; Sun, 1 Jun 2008 08:57:01 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 0A6FA6728F for ; Sun, 1 Jun 2008 08:57:01 +0000 (UTC) Received: from aballier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1K2jN2-0002fg-Vl for gentoo-commits@lists.gentoo.org; Sun, 01 Jun 2008 08:56:57 +0000 From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain-funcs.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: toolchain-funcs.eclass X-VCS-Directories: eclass X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: Sender: Alexis Ballier Date: Sun, 01 Jun 2008 08:56:56 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ab166eec-618b-444e-85ad-6b25d3d631f3 X-Archives-Hash: eeca48038be7e2b1d85c136fd977f93e aballier 08/06/01 08:56:56 Modified: toolchain-funcs.eclass Log: Fix tc-arch-kernel for freebsd: it is still i386 there, bug #222715 Revision Changes Path 1.77 eclass/toolchain-funcs.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain-f= uncs.eclass?rev=3D1.77&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain-f= uncs.eclass?rev=3D1.77&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain-f= uncs.eclass?r1=3D1.76&r2=3D1.77 Index: toolchain-funcs.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v retrieving revision 1.76 retrieving revision 1.77 diff -u -r1.76 -r1.77 --- toolchain-funcs.eclass 16 Apr 2008 14:16:45 -0000 1.76 +++ toolchain-funcs.eclass 1 Jun 2008 08:56:56 -0000 1.77 @@ -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/toolchain-funcs.eclass,v 1.76 = 2008/04/16 14:16:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.77 = 2008/06/01 08:56:56 aballier Exp $ =20 # @ECLASS: toolchain-funcs.eclass # @MAINTAINER: @@ -173,7 +173,8 @@ i?86*) # Starting with linux-2.6.24, the 'x86_64' and 'i386' # trees have been unified into 'x86'. - if [[ ${type} =3D=3D "kern" ]] && [[ $(KV_to_int ${KV}) -lt $(KV_to_i= nt 2.6.24) ]] ; then + # FreeBSD still uses i386 + if [[ ${type} =3D=3D "kern" ]] && [[ $(KV_to_int ${KV}) -lt $(KV_to_i= nt 2.6.24) || ${host} =3D=3D *freebsd* ]] ; then echo i386 else echo x86 --=20 gentoo-commits@lists.gentoo.org mailing list