summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-10-20 16:32:06 +0200
committerMartin Stransky <stransky@redhat.com>2020-10-20 16:32:06 +0200
commit8be766ed2c1c883d19eadfcac915aed9f05106f0 (patch)
treed33065d07e685a2e19245935067c5b2195f3c626 /firefox.sh.in
parentUpdated openh264 patch to use keyframes from contained for openh264 only. (diff)
downloadlibrewolf-fedora-ff-8be766ed2c1c883d19eadfcac915aed9f05106f0.tar.gz
librewolf-fedora-ff-8be766ed2c1c883d19eadfcac915aed9f05106f0.tar.bz2
librewolf-fedora-ff-8be766ed2c1c883d19eadfcac915aed9f05106f0.zip
Added fix for rhbz#1889742 - Typo in /usr/bin/firefox
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 863ef1f..78d908e 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -183,7 +183,7 @@ fi
# When Firefox is not running, restore SELinux labels for profile files
# (rhbz#1731371)
if [ $MOZILLA_DOWN -ne 0 ]; then
- if [ -x $GETENFORCE_FILE ] && [`getenforce` != "Disabled" ]; then
+ if [ -x $GETENFORCE_FILE ] && [ `getenforce` != "Disabled" ]; then
(restorecon -vr ~/.mozilla/firefox/* &)
fi
fi
bgstack15