From: Raphael Hertzog Date: Thu, 27 Dec 2007 16:14:51 +0000 (+0100) Subject: Dpkg::Shlibs::SymbolFile: Blacklist some armel specific symbols X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5805ac1dc166aa0ec41132c11fe0e7ed3371f078;p=dpkg Dpkg::Shlibs::SymbolFile: Blacklist some armel specific symbols Riku Voipio reported that the symbols __exidx_end and __exidx_start are arm eabi internal symbols. Thus they have to be ignored by dpkg-gensymbols. --- diff --git a/ChangeLog b/ChangeLog index 2ea48b52..2da18865 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-27 Raphael Hertzog + + * scripts/Dpkg/Shlibs/SymbolFile.pm: Blacklist some armel specific + symbols (__exidx_end, __exidx_start). + 2007-12-27 Raphael Hertzog * Makefile.am: Add some missing files in EXTRA_DIST. And add a diff --git a/debian/changelog b/debian/changelog index 5ad59650..d7a34a20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ dpkg (1.14.15) UNRELEASED; urgency=low [ Raphael Hertzog ] * Make sure {dpkg-dev,dselect}.preinst are included in the source tarball. Closes: #452730 + * Blacklist armel-specific symbols in dpkg-gensymbols. Reported by Riku + Voipio. Closes: #457964 [ Updated man pages translations ] * Swedish (Peter Karlsson). diff --git a/scripts/Dpkg/Shlibs/SymbolFile.pm b/scripts/Dpkg/Shlibs/SymbolFile.pm index e3eb483d..0035fe52 100644 --- a/scripts/Dpkg/Shlibs/SymbolFile.pm +++ b/scripts/Dpkg/Shlibs/SymbolFile.pm @@ -35,6 +35,8 @@ my %blacklist = ( '_edata' => 1, # ALL '_end' => 1, # ALL '__end__' => 1, # arm + '__exidx_end' => 1, # armel + '__exidx_start' => 1, # armel '_fbss' => 1, # mips, mipsel '_fdata' => 1, # mips, mipsel '_fini' => 1, # ALL