From 67e86571097e6ac35a637344064aa6445f07da03 Mon Sep 17 00:00:00 2001 From: David Adam Date: Sat, 23 Aug 2025 19:40:48 +0800 Subject: [PATCH] debian packaging: don't remove Cargo.toml.orig files Newer versions of cargo include the Cargo.toml.orig file when vendoring, but dh_clean removes those by default. Try to disable this to fix the package builds again. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 4845ba53a..2b1c936d1 100755 --- a/debian/rules +++ b/debian/rules @@ -17,7 +17,7 @@ override_dh_auto_configure: dh_auto_configure --buildsystem=cmake -- -DCMAKE_BUILD_TYPE=RelWithDebInfo override_dh_clean: - dh_clean + dh_clean --exclude=Cargo.toml.orig -unlink .cargo -unlink vendor