[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.5.11-44-ge0dfc4e



The following commit has been merged in the master branch:
commit e0dfc4e5c19c40aa97ad523891ea4a708a98563a
Author: Niels Thykier <niels@thykier.net>
Date:   Thu Jan 3 16:26:45 2013 +0100

    coll/strings: Fix "debug" filter in strings
    
    Correct filter in collection/strings to avoid running strings on debug
    libraries.  Other than wasted processing time and disk space, it does
    not appear to have caused any regressions/false-positives.  Thus the
    collection version has not been bumped.
    
    Signed-off-by: Niels Thykier <niels@thykier.net>

diff --git a/collection/strings b/collection/strings
index efaa918..1d5da2e 100755
--- a/collection/strings
+++ b/collection/strings
@@ -66,7 +66,7 @@ foreach my $bin ($info->sorted_index) {
     next unless $finfo =~ m/\bELF\b/o;
     print ELF_INDEX "$bin\n";
 
-    next if ($bin =~ m,^/usr/lib/debug/,);
+    next if $bin =~ m,^usr/lib/debug/,;
     if ($bin =~ m/[:\n\r]/) {
         # Do these "interesting cases" manual
         push @manual, $bin;
diff --git a/debian/changelog b/debian/changelog
index ed059f4..da19cc4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -21,6 +21,9 @@ lintian (2.5.12) UNRELEASED; urgency=low
       "Keywords" in desktop files.  Thanks to Jeremy Bicha for
       the report.  (Closes: #693918)
 
+  * collection/strings:
+    + [NT] Fix a regression in filtering out "debug" ELF binaries.
+
   * debian/rules:
     + [NT] Include the new Tutorial pods in the "api-doc" target.
 

-- 
Debian package checker


Reply to: