From a5cb27bed2202818ee204db23f8488a7794d6ec3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:41:39 +0200 Subject: Adding debian version 1.70.0+dfsg2-1. Signed-off-by: Daniel Baumann --- debian/patches/u-fix-get-toml-when-test.patch | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'debian/patches/u-fix-get-toml-when-test.patch') diff --git a/debian/patches/u-fix-get-toml-when-test.patch b/debian/patches/u-fix-get-toml-when-test.patch index 2b170977c..34789ecae 100644 --- a/debian/patches/u-fix-get-toml-when-test.patch +++ b/debian/patches/u-fix-get-toml-when-test.patch @@ -6,9 +6,11 @@ Bug: https://github.com/rust-lang/rust/issues/105766 Last-Update: 2023-03-29 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ---- a/src/bootstrap/config.rs -+++ b/src/bootstrap/config.rs -@@ -823,9 +823,9 @@ +Index: rust/src/bootstrap/config.rs +=================================================================== +--- rust.orig/src/bootstrap/config.rs ++++ rust/src/bootstrap/config.rs +@@ -848,9 +848,9 @@ impl Config { } pub fn parse(args: &[String]) -> Config { @@ -20,7 +22,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ let get_toml = |file: &Path| { let contents = t!(fs::read_to_string(file), format!("config file {} not found", file.display())); -@@ -834,7 +834,23 @@ +@@ -859,7 +859,23 @@ impl Config { match toml::from_str(&contents) .and_then(|table: toml::Value| TomlConfig::deserialize(table)) { -- cgit v1.2.3