From 217079606b3bbbf767797db2ce4960ce987e77fd Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 22 Oct 2019 13:53:58 +0300 Subject: [PATCH] firefox: remove unneeded patch --- extra/firefox/patches/fix-rust-target.patch | 24 --------------------- 1 file changed, 24 deletions(-) delete mode 100644 extra/firefox/patches/fix-rust-target.patch diff --git a/extra/firefox/patches/fix-rust-target.patch b/extra/firefox/patches/fix-rust-target.patch deleted file mode 100644 index 8c4b6739..00000000 --- a/extra/firefox/patches/fix-rust-target.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/build/moz.configure/rust.configure -+++ b/build/moz.configure/rust.configure -@@ -280,9 +280,11 @@ - die("Don't know how to translate {} for rustc".format( - host_or_target.alias)) - -+ fixed_alias = rustc_target.alias.replace("-unknown-", "-alpine-").replace("-gnu", "-musl") -+ - # Check to see whether our rustc has a reasonably functional stdlib - # for our chosen target. -- target_arg = '--target=' + rustc_target.alias -+ target_arg = '--target=' + fixed_alias - in_fd, in_path = mkstemp(prefix='conftest', suffix='.rs') - out_fd, out_path = mkstemp(prefix='conftest', suffix='.rlib') - os.close(out_fd) -@@ -319,7 +321,7 @@ - os.remove(out_path) - - # This target is usable. -- return rustc_target.alias -+ return fixed_alias - - return rust_target -