commit: 48b4885e4f9a19ccc4c1489a387e38fb3b7d62b7 Author: Maksym Sditanov <msditanov <AT> 200volts <DOT> com> AuthorDate: Tue Aug 6 20:20:21 2024 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Wed Aug 7 05:39:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48b4885e
www-client/firefox: fix PGO for 115.13.0, 115.14.0 - fix PGO compilation: relax sandbox restrictions for /dev since PGO is hardware-dependant. Closes: https://bugs.gentoo.org/936278 Signed-off-by: Maksym Sditanov <msditanov <AT> 200volts.com> Closes: https://github.com/gentoo/gentoo/pull/37998 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> www-client/firefox/firefox-115.13.0.ebuild | 4 ++-- www-client/firefox/firefox-115.14.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/www-client/firefox/firefox-115.13.0.ebuild b/www-client/firefox/firefox-115.13.0.ebuild index 445bf48eba12..ab2ac2550f3b 100644 --- a/www-client/firefox/firefox-115.13.0.ebuild +++ b/www-client/firefox/firefox-115.13.0.ebuild @@ -584,8 +584,8 @@ pkg_setup() { # (PORTAGE_SCHEDULING_POLICY) update... addpredict /proc - # May need a wider addpredict when using wayland+pgo. - addpredict /dev/dri + # Clear tons of conditions, since PGO is hardware-dependant. + addpredict /dev # Allow access to GPU during PGO run local ati_cards mesa_cards nvidia_cards render_cards diff --git a/www-client/firefox/firefox-115.14.0.ebuild b/www-client/firefox/firefox-115.14.0.ebuild index a9167d5824a1..0d38aaa8ab50 100644 --- a/www-client/firefox/firefox-115.14.0.ebuild +++ b/www-client/firefox/firefox-115.14.0.ebuild @@ -584,8 +584,8 @@ pkg_setup() { # (PORTAGE_SCHEDULING_POLICY) update... addpredict /proc - # May need a wider addpredict when using wayland+pgo. - addpredict /dev/dri + # Clear tons of conditions, since PGO is hardware-dependant. + addpredict /dev # Allow access to GPU during PGO run local ati_cards mesa_cards nvidia_cards render_cards
