summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wever <weeve@gentoo.org>2005-05-12 14:49:26 +0000
committerJason Wever <weeve@gentoo.org>2005-05-12 14:49:26 +0000
commit486e15025f2fa7fb3ab81bae46721a437f99c532 (patch)
tree840d5fd9aa0603c5f4dc525d553e3de4fa30cc3a /eclass/mozconfig.eclass
parentAdded patch which should fix bug #89356. (diff)
downloadgentoo-2-486e15025f2fa7fb3ab81bae46721a437f99c532.tar.gz
gentoo-2-486e15025f2fa7fb3ab81bae46721a437f99c532.tar.bz2
gentoo-2-486e15025f2fa7fb3ab81bae46721a437f99c532.zip
Fixed check for ultrasparc* in CFLAGS so that JavaScript optimizations for UltraSPARC will now be build correctly.
Diffstat (limited to 'eclass/mozconfig.eclass')
-rw-r--r--eclass/mozconfig.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozconfig.eclass b/eclass/mozconfig.eclass
index e92c68582b80..70946d285e93 100644
--- a/eclass/mozconfig.eclass
+++ b/eclass/mozconfig.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig.eclass,v 1.9 2005/03/24 02:46:12 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig.eclass,v 1.10 2005/05/12 14:49:26 weeve Exp $
#
# mozconfig.eclass: the new mozilla.eclass
@@ -195,7 +195,7 @@ mozconfig_init() {
fi
# Here is a strange one...
- if is-flag '-mcpu=ultrasparc*'; then
+ if is-flag '-mcpu=ultrasparc*' || is-flag '-mtune=ultrasparc*'; then
mozconfig_annotate "building on ultrasparc" --enable-js-ultrasparc
fi