From: Peter Michael Green Date: Sat, 5 Feb 2022 14:30:32 +0000 (+0000) Subject: Further raspbian hacks to rust target selection. X-Git-Tag: archive/raspbian/1%102.4.0-1+rpi1~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b837c0108339a1cb487f43ee98545af062eb0085;p=thunderbird.git Further raspbian hacks to rust target selection. Gbp-Pq: Name further-raspbian-hacks-to-rust-target-se.patch --- diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure index 93c3cf9873..f38c732134 100644 --- a/build/moz.configure/rust.configure +++ b/build/moz.configure/rust.configure @@ -406,6 +406,9 @@ def detect_rustc_target( if rustc_target is None: die("Don't know how to translate {} for rustc".format(host_or_target.alias)) + #raspbian hack + if rustc_target == "armv7-unknown-linux-gnueabihf": + rustc_target = "arm-unknown-linux-gnueabihf" return rustc_target