From a3aef842ad1e198ad28bbdf3ce94b12e86996b4c Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Mon, 27 Mar 2017 20:40:19 +0100 Subject: [PATCH] Bugfix: fix the remove_Packages_entry() helper function This was a bug introduced with the backports support. Lots of the internal helper functions take 4 arguments now: ($dir, $arch, $in_backports, $package_info). That's fine, but I forgot to update the code in remove_Packages_entry() to deal with the $in_backports argument. This led to the md5sums.txt files in multi-disc sets being broken - the last file(s) removed on a given disc would still be listed in the md5sums.txt file, even though the file itself had been removed. --- tools/make_disc_trees.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/make_disc_trees.pl b/tools/make_disc_trees.pl index 55ae230d..c4b4b74a 100755 --- a/tools/make_disc_trees.pl +++ b/tools/make_disc_trees.pl @@ -1301,6 +1301,7 @@ sub remove_trans_desc_entry { sub remove_md5_entry { my $dir = shift; my $arch = shift; + my $in_backports = shift; local $_ = shift; my $md5file = "$dir/md5sum.txt"; my $tmp_md5file = "$dir/md5sum.txt.tmp";