Backport: List Translations* in Release
This commit is contained in:
parent
5d56bf1797
commit
c5e46fd7b2
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue