summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2010-04-13 10:15:56 +0000
committerMartin Stransky <stransky@fedoraproject.org>2010-04-13 10:15:56 +0000
commit283554adec0060af584ed220e05ba67dadb2365d (patch)
tree1eb80208e6ca917e6f3685f92a45a6ecf9147797
parentFixed multilib conflict (diff)
downloadlibrewolf-fedora-ff-283554adec0060af584ed220e05ba67dadb2365d.tar.gz
librewolf-fedora-ff-283554adec0060af584ed220e05ba67dadb2365d.tar.bz2
librewolf-fedora-ff-283554adec0060af584ed220e05ba67dadb2365d.zip
Fixed language packs (#559960)
-rw-r--r--firefox.sh.in2
-rw-r--r--firefox.spec5
2 files changed, 5 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 9a26458..53e1c92 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -203,7 +203,7 @@ if [ $MOZILLA_DOWN -ne 0 ]; then
$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org
echo "$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org" > $FEDORA_LANGPACK_CONFIG
fi
- elif [ -f $MOZ_EXTENSIONS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org/chrome/$MOZLOCALE.jar ]; then
+ elif [ -f $MOZ_LANGPACKS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org/chrome/$MOZLOCALE.jar ]; then
if [ -d $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org ]; then
rmdir "$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org" > /dev/null 2>&1
fi
diff --git a/firefox.spec b/firefox.spec
index e6aefee..3dad4b8 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -24,7 +24,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 3.6.3
-Release: 3%{?prever}%{?dist}
+Release: 4%{?prever}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -352,6 +352,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Tue Apr 13 2010 Martin Stransky <stransky@redhat.com> - 3.6.3-4
+- Fixed language packs (#559960)
+
* Mon Apr 12 2010 Martin Stransky <stransky@redhat.com> - 3.6.3-3
- Fixed multilib conflict
bgstack15