diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-08-18 16:26:35 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-08-18 16:26:35 +0000 |
commit | 8f9c3140c758a714a13eb3a37fcbed06c9203a86 (patch) | |
tree | 3b76151c3fbc360caef0ebeadcd7879549a38740 /eclass/mozilla.eclass | |
parent | Closes bug 52964, assists bug 35725 (diff) | |
download | historical-8f9c3140c758a714a13eb3a37fcbed06c9203a86.tar.gz historical-8f9c3140c758a714a13eb3a37fcbed06c9203a86.tar.bz2 historical-8f9c3140c758a714a13eb3a37fcbed06c9203a86.zip |
Fix bug 60668: Galeon doesn't build without oji enabled, so enable it regardless of USE=java
Diffstat (limited to 'eclass/mozilla.eclass')
-rw-r--r-- | eclass/mozilla.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/mozilla.eclass b/eclass/mozilla.eclass index 66944ff252fa..4bfd282544ef 100644 --- a/eclass/mozilla.eclass +++ b/eclass/mozilla.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/mozilla.eclass,v 1.11 2004/08/11 19:41:24 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla.eclass,v 1.12 2004/08/18 16:26:35 agriffis Exp $ ECLASS=mozilla INHERITED="$INHERITED $ECLASS" @@ -227,7 +227,9 @@ mozilla_conf() { # Some browser-only flags if ${MOZ} || ${FF}; then - myconf="${myconf} $(mozilla_use_enable java oji)" + # Bug 60668: Galeon doesn't build without oji enabled, so enable it + # regardless of java setting. + myconf="${myconf} --enable-oji" else mozilla_annotate "n/a on ${PN}" --disable-oji fi |