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 1K0diq-00051b-7Z for garchives@archives.gentoo.org; Mon, 26 May 2008 14:30:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CF34E050D; Mon, 26 May 2008 14:30:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 35E1CE050D for ; Mon, 26 May 2008 14:30:47 +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 6F6FC67840 for ; Mon, 26 May 2008 14:30:46 +0000 (UTC) Received: from ingmar by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1K0din-0007XP-BT for gentoo-commits@lists.gentoo.org; Mon, 26 May 2008 14:30:45 +0000 From: "Ingmar Vanhassel (ingmar)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ingmar@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: qt4-build.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: qt4-build.eclass X-VCS-Directories: eclass X-VCS-Committer: ingmar X-VCS-Committer-Name: Ingmar Vanhassel Content-Type: text/plain; charset=utf8 Message-Id: Sender: Ingmar Vanhassel Date: Mon, 26 May 2008 14:30:45 +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: 5182f141-059a-4054-aa9e-c2f1e967d105 X-Archives-Hash: a35ac2abaab3fc8c6a47371c1c7e74e1 ingmar 08/05/26 14:30:45 Modified: qt4-build.eclass Log: Don't die on ~x86-fbsd, as noted by Alexis Ballier in bug 223557. Revision Changes Path 1.14 eclass/qt4-build.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.e= class?rev=3D1.14&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.e= class?rev=3D1.14&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.e= class?r1=3D1.13&r2=3D1.14 Index: qt4-build.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/qt4-build.eclass,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- qt4-build.eclass 15 May 2008 12:33:53 -0000 1.13 +++ qt4-build.eclass 26 May 2008 14:30:44 -0000 1.14 @@ -1,6 +1,6 @@ # Copyright 2007-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.13 2008/0= 5/15 12:33:53 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.14 2008/0= 5/26 14:30:44 ingmar Exp $ =20 # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -164,7 +164,7 @@ case "${ARCH}" in amd64) myconf=3D"${myconf} -arch x86_64" ;; ppc|ppc64) myconf=3D"${myconf} -arch powerpc" ;; - x86) myconf=3D"${myconf} -arch i386" ;; + x86|x86-*) myconf=3D"${myconf} -arch i386" ;; alpha|arm|ia64|mips|s390|sparc) myconf=3D"${myconf} -arch ${ARCH}" ;; hppa|sh) myconf=3D"${myconf} -arch generic" ;; *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; --=20 gentoo-commits@lists.gentoo.org mailing list