diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-08-12 12:13:31 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-08-12 12:13:31 +0000 |
commit | 011b3b71d73a63ccbb6b1e281057103c240c83cc (patch) | |
tree | 7dd5c1a1fb0a2fc254acb9d9711ed94435281915 /user/thunderbird/rust-config.patch | |
parent | b485f27d0f2aa9eb17c13ccd5ade2e04b0d28d9e (diff) | |
download | packages-011b3b71d73a63ccbb6b1e281057103c240c83cc.tar.gz packages-011b3b71d73a63ccbb6b1e281057103c240c83cc.tar.bz2 packages-011b3b71d73a63ccbb6b1e281057103c240c83cc.tar.xz packages-011b3b71d73a63ccbb6b1e281057103c240c83cc.zip |
user/thunderbird: bump to 68.0
Diffstat (limited to 'user/thunderbird/rust-config.patch')
-rw-r--r-- | user/thunderbird/rust-config.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/user/thunderbird/rust-config.patch b/user/thunderbird/rust-config.patch new file mode 100644 index 000000000..eab72a0e4 --- /dev/null +++ b/user/thunderbird/rust-config.patch @@ -0,0 +1,20 @@ +diff -urw firefox-68.0-old/build/moz.configure/rust.configure firefox-68.0/build/moz.configure/rust.configure +--- firefox-68.0-old/build/moz.configure/rust.configure 2019-07-07 15:56:29.345963800 +0000 ++++ firefox-68.0/build/moz.configure/rust.configure 2019-07-07 16:19:25.990645334 +0000 +@@ -193,12 +193,16 @@ + ambiguous = set() + per_raw_os = {} + for t in out: ++ if 'fuchsia' in t: continue + t = split_triplet(t, allow_unknown=True) + endianness = t.endianness + if t.cpu.startswith('thumb') and endianness not in ('big', 'little'): + endianness = 'little' + key = (t.cpu, endianness, t.os) + if key in per_os: ++ # hax to allow Adélie toolchains to work ++ if 'foxkit' in per_os[key].alias: ++ continue + previous = per_os[key] + per_raw_os[(previous.cpu, previous.endianness, + previous.raw_os)] = previous |