From fe25734789afda0feb293dc509165ce4e8ad02eb Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Mon, 17 Jun 2013 15:35:45 +0100 Subject: [PATCH] List Translation files in dists/$dist/Release too - apt looks there now instead of in Index, apparently. --- 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 fcda5ce7..15da6d27 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ debian-cd (3.1.14) 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. [ Robert Spencer ] * Build without isolinux/desktop. Closes: #706150 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;