aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/firefox/fix-target-detection.patch
diff options
context:
space:
mode:
authoremmett1 <emmett1.2miligrams@protonmail.com>2025-09-22 14:32:45 +0000
committeremmett1 <emmett1.2miligrams@protonmail.com>2025-09-22 14:32:45 +0000
commit4b0b1095e26577d059a03b697b9977d981094e17 (patch)
tree59dec73747026038414e7aae2543a8db619bb3bb /repos/extra/firefox/fix-target-detection.patch
parent6f48db523409b4adcdaefc460aea4481e5c034b4 (diff)
downloadalicelinux-4b0b1095e26577d059a03b697b9977d981094e17.tar.gz
alicelinux-4b0b1095e26577d059a03b697b9977d981094e17.zip
firefox: updated to 143.0.1
Diffstat (limited to 'repos/extra/firefox/fix-target-detection.patch')
-rw-r--r--repos/extra/firefox/fix-target-detection.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/repos/extra/firefox/fix-target-detection.patch b/repos/extra/firefox/fix-target-detection.patch
deleted file mode 100644
index 8e115a3d..00000000
--- a/repos/extra/firefox/fix-target-detection.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure
-index 7a2fd1a..ba5ba62 100644
---- a/build/moz.configure/rust.configure
-+++ b/build/moz.configure/rust.configure
-@@ -403,9 +403,13 @@ def detect_rustc_target(
- ]
- if len(narrowed) == 1:
- return narrowed[0].rust_target
-+ elif narrowed:
-+ candidates = narrowed
-+
-+ aliased_vendor = "unknown" if host_or_target.vendor == "pc" else host_or_target.vendor
-
- # Finally, see if the vendor can be used to disambiguate.
-- narrowed = [c for c in candidates if c.target.vendor == host_or_target.vendor]
-+ narrowed = [c for c in candidates if c.target.vendor == aliased_vendor]
- if len(narrowed) == 1:
- return narrowed[0].rust_target
-