diff options
author | Joonas Niilola <juippis@gentoo.org> | 2022-09-16 12:32:35 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-09-16 12:34:20 +0300 |
commit | 92aa33f81c83084265453746a922578ac033b489 (patch) | |
tree | 17eb95c0228395a8179a947de403b2c8a5552418 /www-client | |
parent | dev-libs/nss: add 3.83 (diff) | |
download | gentoo-92aa33f81c83084265453746a922578ac033b489.tar.gz gentoo-92aa33f81c83084265453746a922578ac033b489.tar.bz2 gentoo-92aa33f81c83084265453746a922578ac033b489.zip |
www-client/firefox: add a rust version check to 102
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/firefox/firefox-102.2.0.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www-client/firefox/firefox-102.2.0.ebuild b/www-client/firefox/firefox-102.2.0.ebuild index a0eeff939240..9e0b2260a47a 100644 --- a/www-client/firefox/firefox-102.2.0.ebuild +++ b/www-client/firefox/firefox-102.2.0.ebuild @@ -460,6 +460,13 @@ pkg_setup() { fi fi + if ver_test $(rustc -V | cut -d" " -f2) -ge "1.63"; then + ewarn "Rust-1.63 is currently unsupported for building Firefox-102." + ewarn "Please use 'eselect rust' to switch to a lower version, then resume" + ewarn "building Firefox." + die "Rust-1.63 detected. Use eselect rust to choose <1.63" + fi + python-any-r1_pkg_setup # Avoid PGO profiling problems due to enviroment leakage |