mirror of
https://salsa.debian.org/images-team/debian-cd.git
synced 2024-11-24 15:19:51 -01:00
make_disc_trees.pl: fix generation of Contents-firmware
The regexp didn't match symlinks in .deb files, let's fix that
This commit is contained in:
parent
c5ff679857
commit
aebf4f0556
@ -1275,7 +1275,7 @@ sub add_firmware_stuff {
|
||||
or die "Can't find contents of $dir/firmware/$base_file: $!";
|
||||
while (defined(my $line = <DPKGC>)) {
|
||||
chomp $line;
|
||||
if ($line =~ m,^[-|l]\S+\s+\S+\s+\d+\s+\S+\s+\S+\s+./(\S+/firmware/\S+)$,) {
|
||||
if ($line =~ m,^[-|l]\S+\s+\S+\s+\d+\s+\S+\s+\S+\s+./(\S+/firmware/\S+),) {
|
||||
printf OFILE "%-55s %s %s\n", "/$1", $base_file, $component;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user