Gentoo Archives: gentoo-commits

From: "Ingmar Vanhassel (ingmar)" <ingmar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: qt4-build.eclass
Date: Mon, 26 May 2008 14:30:48
Message-Id: E1K0din-0007XP-BT@stork.gentoo.org
1 ingmar 08/05/26 14:30:45
2
3 Modified: qt4-build.eclass
4 Log:
5 Don't die on ~x86-fbsd, as noted by Alexis Ballier in bug 223557.
6
7 Revision Changes Path
8 1.14 eclass/qt4-build.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.eclass?rev=1.14&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.eclass?rev=1.14&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4-build.eclass?r1=1.13&r2=1.14
13
14 Index: qt4-build.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v
17 retrieving revision 1.13
18 retrieving revision 1.14
19 diff -u -r1.13 -r1.14
20 --- qt4-build.eclass 15 May 2008 12:33:53 -0000 1.13
21 +++ qt4-build.eclass 26 May 2008 14:30:44 -0000 1.14
22 @@ -1,6 +1,6 @@
23 # Copyright 2007-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.13 2008/05/15 12:33:53 ingmar Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.14 2008/05/26 14:30:44 ingmar Exp $
27
28 # @ECLASS: qt4-build.eclass
29 # @MAINTAINER:
30 @@ -164,7 +164,7 @@
31 case "${ARCH}" in
32 amd64) myconf="${myconf} -arch x86_64" ;;
33 ppc|ppc64) myconf="${myconf} -arch powerpc" ;;
34 - x86) myconf="${myconf} -arch i386" ;;
35 + x86|x86-*) myconf="${myconf} -arch i386" ;;
36 alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;;
37 hppa|sh) myconf="${myconf} -arch generic" ;;
38 *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;;
39
40
41
42 --
43 gentoo-commits@l.g.o mailing list