The branch, master has been updated
       via  5805ac1dc166aa0ec41132c11fe0e7ed3371f078 (commit)
      from  fd3aae5215cae427bbd3cdd05bf4b7e988cd7447 (commit)


- Shortlog ------------------------------------------------------------
5805ac1 Dpkg::Shlibs::SymbolFile: Blacklist some armel specific symbols

Summary of changes:
 ChangeLog                         |    5 +++++
 debian/changelog                  |    2 ++
 scripts/Dpkg/Shlibs/SymbolFile.pm |    2 ++
 3 files changed, 9 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
Details of changes:

commit 5805ac1dc166aa0ec41132c11fe0e7ed3371f078
Author: Raphael Hertzog <[EMAIL PROTECTED]>
Date:   Thu Dec 27 17:14:51 2007 +0100

    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 2ea48b5..2da1886 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-12-27  Raphael Hertzog  <[EMAIL PROTECTED]>
 
+       * scripts/Dpkg/Shlibs/SymbolFile.pm: Blacklist some armel specific
+       symbols (__exidx_end, __exidx_start).
+
+2007-12-27  Raphael Hertzog  <[EMAIL PROTECTED]>
+
        * Makefile.am: Add some missing files in EXTRA_DIST. And add a
        dist-hook rule to check that all files contained in the git
        repository (except .gitignore) are included in the dist tarball.
diff --git a/debian/changelog b/debian/changelog
index 5ad5965..d7a34a2 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 e3eb483..0035fe5 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

-- 
dpkg's main repository


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to