Codebase list debian-goodies / 1eb5e96
find-dbgsym-packages: Expand tab Jakub Wilk 5 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
128128 my $output = capturex(qw(ldd --), $filename);
129129
130130 foreach my $line (split(/\n/, $output)) {
131 chomp $line;
131 chomp $line;
132132 my ($name, $path);
133133 if ($line =~ /^\t.+ => (.+) \(0x[0-9a-f]+\)$/) {
134134 push @libs, $1;