Codebase list debian-goodies / ed7eec9
find-dbgsym-packages: Ignore all vDSOs The name of the vDSO varies with architecture. Ignore vDSOs under all known names, not only "linux-vdso.so.*". Fixes: $ find-dbgsym-packages /bin/ls eu-unstrip: linux-gate.so.1: No such file or directory "eu-unstrip" unexpectedly returned exit value 1 at /usr/bin/find-dbgsym-packages line 162. on i386. Closes: #909357 Jakub Wilk authored 5 years ago Axel Beckert committed 5 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
4343 foreach my $id (keys %build_ids) {
4444 my ($path, $name) = @{$build_ids{$id}};
4545
46 next if $name =~ /^linux-vdso[.]so[.]/;
46 next if $name =~ /^linux-(gate|vdso\d*)[.]so[.]/;
4747
4848 my @p = get_debs_from_id($id);
4949 if (scalar @p == 0) {