From c5e46fd7b21b28b1f3997cdd4b8d0785f6a37efb Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Mon, 17 Jun 2013 15:47:40 +0100 Subject: [PATCH] Backport: List Translations* in Release --- debian/changelog | 2 ++ tools/make_disc_trees.pl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 07056ee7..60c48603 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,8 @@ debian-cd (3.1.13-deb7u1) UNRELEASED; urgency=low + Make sure that when we call apt, we tell it to *not* use localised package descriptions; this causes issues during build. See #712435 in apt. + + List Translation files in dists/$dist/Release too - apt looks there + now instead of in Index, apparently. -- Steve McIntyre <93sam@debian.org> Mon, 17 June 2013 15:44:32 +0100 diff --git a/tools/make_disc_trees.pl b/tools/make_disc_trees.pl index 7674c2a0..6d2aa5bf 100755 --- a/tools/make_disc_trees.pl +++ b/tools/make_disc_trees.pl @@ -597,7 +597,7 @@ sub find_and_checksum_files_for_release { $filename = $File::Find::name; - if ($filename =~ m/\/.*\/(Packages|Sources|Release)/o) { + if ($filename =~ m/\/.*\/(Packages|Sources|Release|Translation)/o) { $filename =~ s/^\.\///g; ($checksum, $size) = checksum_file($_, $current_checksum_type); printf RELEASE " %s %8d %s\n", $checksum, $size, $filename;