summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2014-01-20 10:33:17 +0100
committerJan Horak <jhorak@redhat.com>2014-01-20 10:33:17 +0100
commit0e02fc295c680143e509ede9c8eca7a74a52fead (patch)
tree6a498ecade6485157e09fcafb1415c0c209a2e1d /firefox.sh.in
parentRemoved xulrunner executable from %files section (diff)
downloadlibrewolf-fedora-ff-0e02fc295c680143e509ede9c8eca7a74a52fead.tar.gz
librewolf-fedora-ff-0e02fc295c680143e509ede9c8eca7a74a52fead.tar.bz2
librewolf-fedora-ff-0e02fc295c680143e509ede9c8eca7a74a52fead.zip
Fixed langpack installation
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 7572fe9..f576b2b 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -171,9 +171,9 @@ FEDORA_LANGPACK_CONFIG="$MOZ_EXTENSIONS_PROFILE_DIR/.fedora-langpack-install"
# MOZ_DISABLE_LANGPACKS disables language packs completely
MOZILLA_DOWN=0
if ! [ $MOZ_DISABLE_LANGPACKS ] || [ $MOZ_DISABLE_LANGPACKS -eq 0 ]; then
- if [ -x $MOZ_LIB_DIR/mozilla-xremote-client ]; then
+ if [ -x $MOZ_DIST_BIN/mozilla-xremote-client ]; then
# Is firefox running?
- $MOZ_LIB_DIR/mozilla-xremote-client -a firefox 'ping()' > /dev/null 2>&1
+ $MOZ_DIST_BIN/mozilla-xremote-client -a firefox 'ping()' > /dev/null 2>&1
MOZILLA_DOWN=$?
fi
fi
bgstack15