summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2011-12-21 10:03:00 +0100
committerJan Horak <jhorak@redhat.com>2011-12-21 10:03:00 +0100
commit36c0fad1a6b55ec4aa126696cc5aa289092238e5 (patch)
tree611cd52dd48ca4e5d5ee9e6f4888d7f916e4e43a /firefox.sh.in
parentUpdate to 9.0, fixed src dir (diff)
downloadlibrewolf-fedora-ff-36c0fad1a6b55ec4aa126696cc5aa289092238e5.tar.gz
librewolf-fedora-ff-36c0fad1a6b55ec4aa126696cc5aa289092238e5.tar.bz2
librewolf-fedora-ff-36c0fad1a6b55ec4aa126696cc5aa289092238e5.zip
Fixed langpacks loading
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index bcf31d8..4c476ca 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -180,6 +180,8 @@ if [ $MOZILLA_DOWN -ne 0 ]; then
if [ -f $FEDORA_LANGPACK_CONFIG ]; then
rm `cat $FEDORA_LANGPACK_CONFIG` > /dev/null 2>&1
rm $FEDORA_LANGPACK_CONFIG > /dev/null 2>&1
+ # remove all empty langpacks dirs while they block installation of langpacks
+ rmdir $MOZ_EXTENSIONS_PROFILE_DIR/langpack* > /dev/null 2>&1
fi
# Get locale from system
bgstack15