diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-01-10 12:18:05 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-01-10 12:18:05 +0000 |
commit | 79f93ccd977ce6659cfd35800f2ae7206f3a8835 (patch) | |
tree | 963eb95d1b27c93c3462fe88c0c76aedebf048da /eclass/mozilla-launcher.eclass | |
parent | Cleanup (diff) | |
download | gentoo-2-79f93ccd977ce6659cfd35800f2ae7206f3a8835.tar.gz gentoo-2-79f93ccd977ce6659cfd35800f2ae7206f3a8835.tar.bz2 gentoo-2-79f93ccd977ce6659cfd35800f2ae7206f3a8835.zip |
Fix when we don't have firefox3 but we have the xulrunner USE-flag enabled
Diffstat (limited to 'eclass/mozilla-launcher.eclass')
-rw-r--r-- | eclass/mozilla-launcher.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozilla-launcher.eclass b/eclass/mozilla-launcher.eclass index 5761023b3038..12f73a27dc3f 100644 --- a/eclass/mozilla-launcher.eclass +++ b/eclass/mozilla-launcher.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-launcher.eclass,v 1.16 2008/01/06 19:43:49 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla-launcher.eclass,v 1.17 2008/01/10 12:18:05 armin76 Exp $ inherit nsplugins multilib @@ -69,7 +69,7 @@ install_mozilla_launcher_stub() { declare libdir=$2 # If we use xulrunner, the name of the binary should be the same - if use xulrunner; then + if [[ ! ${PV} < 3.0_pre20070202 ]] && use xulrunner ; then declare appname=xulrunner declare xulparams="export XUL_PARAMS=${libdir}/application.ini" declare libdir="/usr/$(get_libdir)/xulrunner" |