diff options
author | Martin Stransky <stransky@redhat.com> | 2015-03-05 14:10:30 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2015-03-05 14:10:30 +0100 |
commit | a3e5347321a645dede559f21fe60b7f432de8d01 (patch) | |
tree | 502ccab8ef38e1f5cad44858d01d873490b3bcf9 /firefox.sh.in | |
parent | Enable Skia for all arches (rhbz#1197007) (diff) | |
download | librewolf-fedora-ff-a3e5347321a645dede559f21fe60b7f432de8d01.tar.gz librewolf-fedora-ff-a3e5347321a645dede559f21fe60b7f432de8d01.tar.bz2 librewolf-fedora-ff-a3e5347321a645dede559f21fe60b7f432de8d01.zip |
Added back the removed -remote option, Fixed rhbz#1198965 - mozilla-xremote-client has been removed, langpack installation may be broken
Diffstat (limited to 'firefox.sh.in')
-rw-r--r-- | firefox.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in index 36d608f..2a0dfc9 100644 --- a/firefox.sh.in +++ b/firefox.sh.in @@ -168,9 +168,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_DIST_BIN/mozilla-xremote-client ]; then + if [ -x $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE ]; then # Is firefox running? - $MOZ_DIST_BIN/mozilla-xremote-client -a firefox 'ping()' > /dev/null 2>&1 + $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE -remote 'ping()' > /dev/null 2>&1 MOZILLA_DOWN=$? fi fi |