summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2015-07-08 18:41:10 +0200
committerMartin Stransky <stransky@anakreon.cz>2015-07-08 18:41:10 +0200
commit7d3f0140744f34c6f7771ba098c414f2e1591aa7 (patch)
tree361eef5b47cd069ef72a53ff408a8ba043b8befd /firefox.sh.in
parentRemoved broken patch - mozilla-884831.patch (diff)
downloadlibrewolf-fedora-ff-7d3f0140744f34c6f7771ba098c414f2e1591aa7.tar.gz
librewolf-fedora-ff-7d3f0140744f34c6f7771ba098c414f2e1591aa7.tar.bz2
librewolf-fedora-ff-7d3f0140744f34c6f7771ba098c414f2e1591aa7.zip
Added a fix for rhbz#1240259 - Firefox 39 does not open home page but restore session - second try
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 2a0dfc9..385a05c 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -170,7 +170,7 @@ MOZILLA_DOWN=0
if ! [ $MOZ_DISABLE_LANGPACKS ] || [ $MOZ_DISABLE_LANGPACKS -eq 0 ]; then
if [ -x $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE ]; then
# Is firefox running?
- $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE -remote 'ping()' > /dev/null 2>&1
+ /usr/bin/pidof firefox > /dev/null 2>&1
MOZILLA_DOWN=$?
fi
fi
bgstack15