]> err.no Git - dpkg/commitdiff
Dpkg::Shlibs::Objdump: ignore some arch-specific output that we don't grok
authorRaphael Hertzog <hertzog@debian.org>
Wed, 26 Sep 2007 12:37:57 +0000 (14:37 +0200)
committerRaphael Hertzog <hertzog@debian.org>
Wed, 26 Sep 2007 12:37:57 +0000 (14:37 +0200)
scripts/Dpkg/Shlibs/Objdump.pm

index e08699df86cdb3ff407ddea87164cb8f4c7dbe8d..97526bf9da0165924a053b4988a8f20d10d6f355 100644 (file)
@@ -274,6 +274,9 @@ sub parse_dynamic_symbol {
        $self->add_dynamic_symbol($symbol);
     } elsif ($line =~ /^[0-9a-f]+ (.{7})\s+(\S+)\s+[0-9a-f]+/) {
        # Same start but no version and no symbol ... just ignore
+    } elsif ($line =~ /^REG_G\d+\s+/) {
+       # Ignore some s390-specific output like
+       # REG_G6           g     R *UND*      0000000000000000              #scratch
     } else {
        warning(sprintf(_g("Couldn't parse dynamic symbol definition: %s"), $line));
     }