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

[SCM] Debian package checker branch, master, updated. 2.5.4-14-g3241b1c



The following commit has been merged in the master branch:
commit 3241b1cab7792bbe86df3efc7859d74cf7be6b28
Author: Niels Thykier <niels@thykier.net>
Date:   Thu Dec 1 23:17:27 2011 +0100

    Adding missing /x to "Version symbol" regex for readelf
    
    Without /x the regex misses the entries in the Version symbols.  This
    fixes a regression I introduced in 74b4922.
    
    Signed-off-by: Niels Thykier <niels@thykier.net>

diff --git a/collection/objdump-info b/collection/objdump-info
index 23b35aa..a2a0508 100755
--- a/collection/objdump-info
+++ b/collection/objdump-info
@@ -157,7 +157,7 @@ while (<FILES>) {
                             }
                             $value =~ s/^(?:Shared library|Library soname): \[(.*)\]/$1/;
                             print OUT "  $type   $value\n";
-                        } elsif (m/^\s*[0-9A-F]+: \s+ \S+ \s* (?:\(\S+\))? (?:\s|\Z)/i
+                        } elsif (m/^\s*[0-9A-F]+: \s+ \S+ \s* (?:\(\S+\))? (?:\s|\Z)/xi
                               and $section eq 'VS') {
                             while (m/([0-9A-F]+h?)\s*(?:\((\S+)\))?(?:\s|\Z)/gci) {
                                 my ($vernum, $verstring) = ($1, $2);

-- 
Debian package checker


Reply to: