The following commit has been merged in the master branch:
commit c8208ba825363406684ca01aa9953a4774d2adb3
Author: Jakub Wilk <[email protected]>
Date:   Wed Jul 17 14:38:13 2013 +0200

    c/binaries.pm: Add missing escape of "." in regex
    
    Signed-off-by: Niels Thykier <[email protected]>

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


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to