summaryrefslogtreecommitdiff
path: root/librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-06-28 22:40:29 -0400
committerB. Stack <bgstack15@gmail.com>2022-06-28 22:40:29 -0400
commit7d079c7718959bc1b758d5964abbc6158fd5b3f2 (patch)
tree844d303ea5aed16ef13ede1fe5a68ad4bec21039 /librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch
parentffs: fix dpkg r_z_a_u.patch (diff)
downloadstackrpms-7d079c7718959bc1b758d5964abbc6158fd5b3f2.tar.gz
stackrpms-7d079c7718959bc1b758d5964abbc6158fd5b3f2.tar.bz2
stackrpms-7d079c7718959bc1b758d5964abbc6158fd5b3f2.zip
lw 101.0.1 dpkg rc1
Diffstat (limited to 'librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch')
-rw-r--r--librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch b/librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch
new file mode 100644
index 0000000..82be514
--- /dev/null
+++ b/librewolf/debian/patches/debian-hacks/Allow-to-build-with-cargo-in-Debian-unstable.patch
@@ -0,0 +1,21 @@
+From: Mike Hommey <mh@glandium.org>
+Date: Fri, 10 Jun 2022 06:22:33 +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 e64dc5d..10c8947b 100644
+--- a/build/moz.configure/rust.configure
++++ b/build/moz.configure/rust.configure
+@@ -171,7 +171,7 @@ def rust_compiler(rustc_info, cargo_info, target):
+ )
+ )
+ rustc_min_version = Version(MINIMUM_RUST_VERSION)
+- cargo_min_version = rustc_min_version
++ cargo_min_version = Version("1.56.0")
+
+ version = rustc_info.version
+ is_nightly = "nightly" in version.version
bgstack15