[SCM] Debian package checker branch, master, updated. 2.5.14-70-gc8208ba
The following commit has been merged in the master branch:
commit c8208ba825363406684ca01aa9953a4774d2adb3
Author: Jakub Wilk <jwilk@debian.org>
Date: Wed Jul 17 14:38:13 2013 +0200
c/binaries.pm: Add missing escape of "." in regex
Signed-off-by: Niels Thykier <niels@thykier.net>
diff --git a/checks/binaries.pm b/checks/binaries.pm
index 8eaf70f..80f0637 100644
--- a/checks/binaries.pm
+++ b/checks/binaries.pm
@@ -361,7 +361,7 @@ foreach my $file ($info->sorted_index) {
}
# Something other than detached debugging symbols in /usr/lib/debug paths.
- if ($file =~ m,^usr/lib/debug/(?:lib\d*|s?bin|usr|opt|dev|emul|.build-id)/,) {
+ if ($file =~ m,^usr/lib/debug/(?:lib\d*|s?bin|usr|opt|dev|emul|\.build-id)/,) {
if (scalar (@{ $objdump->{NEEDED} }) ) {
tag 'debug-file-should-use-detached-symbols', $file;
}
--
Debian package checker
Reply to: