Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions debian/dh_dlopenlibdeps
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ on_pkgs_in_parallel {
if ($line =~ m/^local diversion |^diversion by/) {
next;
}
if ($line =~ m/^([-a-z0-9+]+):/) {
if ($line =~ m/^([-a-z0-9+.]+):/) {
$required_packages{$1} = 1;
}
}
Expand All @@ -115,7 +115,7 @@ on_pkgs_in_parallel {
if ($line =~ m/^local diversion |^diversion by/) {
next;
}
if ($line =~ m/^([-a-z0-9+]+):/) {
if ($line =~ m/^([-a-z0-9+.]+):/) {
$recommended_packages{$1} = 1;
}
}
Expand All @@ -128,7 +128,7 @@ on_pkgs_in_parallel {
if ($line =~ m/^local diversion |^diversion by/) {
next;
}
if ($line =~ m/^([-a-z0-9+]+):/) {
if ($line =~ m/^([-a-z0-9+.]+):/) {
$suggested_packages{$1} = 1;
}
}
Expand Down