List Translation files in dists/$dist/Release too - apt looks there
now instead of in Index, apparently.
This commit is contained in:
parent
1da261e07e
commit
fe25734789
|
@ -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
|
||||
|
|
|
@ -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