From d38e8d325c1c18947ef66b29cde08178bd3db71c Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Thu, 12 Jul 2012 15:22:36 +0200 Subject: finished the langpack fix --- firefox.sh.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'firefox.sh.in') diff --git a/firefox.sh.in b/firefox.sh.in index d89d4f2..6004ea6 100644 --- a/firefox.sh.in +++ b/firefox.sh.in @@ -198,6 +198,11 @@ if [ $MOZILLA_DOWN -ne 0 ]; then local langpack=langpack-${language}@firefox.mozilla.org.xpi if [ -f $MOZ_LANGPACKS_DIR/$langpack ]; then rm -rf $MOZ_EXTENSIONS_PROFILE_DIR/$langpack + # If the target file is a symlink (the fallback langpack), + # install the original file instead of the fallback one + if [ -h $MOZ_LANGPACKS_DIR/$langpack ]; then + langpack=`readlink $MOZ_LANGPACKS_DIR/$langpack` + fi ln -s $MOZ_LANGPACKS_DIR/$langpack \ $MOZ_EXTENSIONS_PROFILE_DIR/$langpack echo $MOZ_EXTENSIONS_PROFILE_DIR/$langpack > $FEDORA_LANGPACK_CONFIG -- cgit