From feff6012e0f1fa34f136a6440b233d47cfa56d89 Mon Sep 17 00:00:00 2001 From: Raphael Hertzog Date: Wed, 26 Sep 2007 14:37:57 +0200 Subject: [PATCH] Dpkg::Shlibs::Objdump: ignore some arch-specific output that we don't grok --- scripts/Dpkg/Shlibs/Objdump.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/Dpkg/Shlibs/Objdump.pm b/scripts/Dpkg/Shlibs/Objdump.pm index e08699df..97526bf9 100644 --- a/scripts/Dpkg/Shlibs/Objdump.pm +++ b/scripts/Dpkg/Shlibs/Objdump.pm @@ -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)); } -- 2.39.5