diff options
author | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-05-26 14:30:44 +0000 |
---|---|---|
committer | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-05-26 14:30:44 +0000 |
commit | 76a3b6ee58392db06794278d3caea25d610155be (patch) | |
tree | 305db9b15f016d4c41aad00c2f052e4cfc7fec0f /eclass | |
parent | Version bump. Bug fix release. (diff) | |
download | gentoo-2-76a3b6ee58392db06794278d3caea25d610155be.tar.gz gentoo-2-76a3b6ee58392db06794278d3caea25d610155be.tar.bz2 gentoo-2-76a3b6ee58392db06794278d3caea25d610155be.zip |
Don't die on ~x86-fbsd, as noted by Alexis Ballier in bug 223557.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 39aa762476a3..8aa52719445c 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -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/05/15 12:33:53 ingmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.14 2008/05/26 14:30:44 ingmar Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -164,7 +164,7 @@ standard_configure_options() { case "${ARCH}" in amd64) myconf="${myconf} -arch x86_64" ;; ppc|ppc64) myconf="${myconf} -arch powerpc" ;; - x86) myconf="${myconf} -arch i386" ;; + x86|x86-*) myconf="${myconf} -arch i386" ;; alpha|arm|ia64|mips|s390|sparc) myconf="${myconf} -arch ${ARCH}" ;; hppa|sh) myconf="${myconf} -arch generic" ;; *) die "${ARCH} is unsupported by this eclass. Please file a bug." ;; |