Added fix for rhbz#1731371
This commit is contained in:
parent
e7dcff0505
commit
c8a56b17a2
@ -10,5 +10,3 @@ diff -up firefox-76.0.1/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp.old fi
|
|||||||
|
|
||||||
typedef mozilla::layers::Image Image;
|
typedef mozilla::layers::Image Image;
|
||||||
typedef mozilla::layers::PlanarYCbCrImage PlanarYCbCrImage;
|
typedef mozilla::layers::PlanarYCbCrImage PlanarYCbCrImage;
|
||||||
diff -up firefox-76.0.1/media/libyuv/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.old firefox-76.0.1/media/libyuv/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium
|
|
||||||
diff -up firefox-76.0.1/media/webrtc/trunk/Makefile.old firefox-76.0.1/media/webrtc/trunk/Makefile
|
|
||||||
|
@ -174,11 +174,19 @@ MOZILLA_DOWN=0
|
|||||||
if ! [ $MOZ_DISABLE_LANGPACKS ] || [ $MOZ_DISABLE_LANGPACKS -eq 0 ]; then
|
if ! [ $MOZ_DISABLE_LANGPACKS ] || [ $MOZ_DISABLE_LANGPACKS -eq 0 ]; then
|
||||||
if [ -x $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE ]; then
|
if [ -x $MOZ_DIST_BIN/$MOZ_FIREFOX_FILE ]; then
|
||||||
# Is firefox running?
|
# Is firefox running?
|
||||||
/__PREFIX__/bin/pidof firefox > /dev/null 2>&1
|
/__PREFIX__/bin/pidof $MOZ_PROGRAM > /dev/null 2>&1
|
||||||
MOZILLA_DOWN=$?
|
MOZILLA_DOWN=$?
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# When Firefox is not running, restore SELinux labels for profile files
|
||||||
|
# (rhbz#1731371)
|
||||||
|
if [ $MOZILLA_DOWN -ne 0 ]; then
|
||||||
|
if [ `getenforce` != "Disabled" ]; then
|
||||||
|
restorecon -vr ~/.mozilla/firefox/* &
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# Modify language pack configuration only when firefox is not running
|
# Modify language pack configuration only when firefox is not running
|
||||||
# and language packs are not disabled
|
# and language packs are not disabled
|
||||||
if [ $MOZILLA_DOWN -ne 0 ]; then
|
if [ $MOZILLA_DOWN -ne 0 ]; then
|
||||||
|
@ -116,7 +116,7 @@ ExcludeArch: s390x
|
|||||||
Summary: Mozilla Firefox Web browser
|
Summary: Mozilla Firefox Web browser
|
||||||
Name: firefox
|
Name: firefox
|
||||||
Version: 81.0
|
Version: 81.0
|
||||||
Release: 5%{?dist}
|
Release: 6%{?dist}
|
||||||
URL: https://www.mozilla.org/firefox/
|
URL: https://www.mozilla.org/firefox/
|
||||||
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
||||||
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
|
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
|
||||||
@ -974,6 +974,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 23 2020 Martin Stransky <stransky@redhat.com> - 81.0-6
|
||||||
|
- Added fix for rhbz#1731371
|
||||||
|
|
||||||
* Tue Sep 22 2020 Kalev Lember <klember@redhat.com> - 81.0-5
|
* Tue Sep 22 2020 Kalev Lember <klember@redhat.com> - 81.0-5
|
||||||
- Re-enable builds for armv7hl and aarch64 architectures
|
- Re-enable builds for armv7hl and aarch64 architectures
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user