diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:59 +0000 |
commit | 4619c1a0ffc127c8f645077f5c322663d8b9b2b3 (patch) | |
tree | 070869da410d51f1e532cfb680e493ef847523c7 /debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch | |
parent | Adding upstream version 86.0.1. (diff) | |
download | firefox-debian/86.0.1-1.tar.xz firefox-debian/86.0.1-1.zip |
Adding debian version 86.0.1-1.debian/86.0.1-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch')
-rw-r--r-- | debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch b/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch new file mode 100644 index 0000000000..52e743487c --- /dev/null +++ b/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch @@ -0,0 +1,21 @@ +From: Mike Hommey <mh@glandium.org> +Date: Sat, 6 Feb 2021 07:52:19 +0900 +Subject: Allow to build with cargo in Debian unstable + +--- + build/moz.configure/rust.configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure +index ff3dbe0..2ceff72 100644 +--- a/build/moz.configure/rust.configure ++++ b/build/moz.configure/rust.configure +@@ -168,7 +168,7 @@ def rust_compiler(rustc_info, cargo_info, build_project): + rustc_min_version = Version("1.47.0") + else: + rustc_min_version = Version(MINIMUM_RUST_VERSION) +- cargo_min_version = rustc_min_version ++ cargo_min_version = Version("1.46.0") + + version = rustc_info.version + is_nightly = "nightly" in version.version |