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

Bug#319620: marked as done (mklibs fails to ignore a LOCAL UND symbol)



Your message dated Thu, 28 Jul 2005 01:18:50 -0700
with message-id <E1Dy3bO-0006Mp-00@spohr.debian.org>
and subject line Bug#319620: fixed in mklibs 0.1.16
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 23 Jul 2005 14:54:33 +0000
>From ths@networkno.de Sat Jul 23 07:54:33 2005
Return-path: <ths@networkno.de>
Received: from mx02.qsc.de [213.148.130.14] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1DwLOa-00058f-00; Sat, 23 Jul 2005 07:54:33 -0700
Received: from port-195-158-170-19.dynamic.qsc.de ([195.158.170.19] helo=hattusa.textio)
	by mx02.qsc.de with esmtp (Exim 3.35 #1)
	id 1DwLO5-0002Sd-00
	for submit@bugs.debian.org; Sat, 23 Jul 2005 16:54:01 +0200
Received: from ths by hattusa.textio with local (Exim 4.52)
	id 1DwLO5-0003J2-7l
	for submit@bugs.debian.org; Sat, 23 Jul 2005 16:54:01 +0200
Date: Sat, 23 Jul 2005 16:54:01 +0200
To: submit@bugs.debian.org
Subject: mklibs fails to ignore a LOCAL UND symbol
Message-ID: <[🔎] 20050723145401.GK1692@hattusa.textio>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
From: Thiemo Seufer <ths@networkno.de>
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: mklibs
Version: 0.1.15
Severity: important
Tags: patch

Recent libnewt has on mips/mipsel the following symbol:

readelf -s -W /lib/libnewt.so.0.51

Symbol table '.dynsym' contains 189 entries:
   Num:    Value  Size Type    Bind   Vis      Ndx Name
    ...
    38: 11000000    20 NOTYPE  LOCAL  DEFAULT  UND indow
    ...

While its mere existence is admittedly suspicious, it shouldn't be
taken as a symbol which needs to be externally resolved by mklibs.
The attempt to resolve this symbol breaks the debian-installer
build for mips/mipsel.

The appended patch excludes LOCAL UND symbols from the list of
undefined symbols mklibs tries to resolve.


Thiemo


--- mklibs~	2004-02-07 09:40:39.000000000 +0100
+++ mklibs	2005-07-21 13:41:23.000000000 +0200
@@ -156,7 +156,7 @@ def undefined_symbols(obj):
         match = symline_regexp.match(line)
         if match:
             bind, ndx, name = match.groups()
-            if ndx == "UND":
+            if bind != "LOCAL" and ndx == "UND":
                 result.add((name, bind == "WEAK"))
     return result
 

---------------------------------------
Received: (at 319620-close) by bugs.debian.org; 28 Jul 2005 08:53:04 +0000
>From katie@spohr.debian.org Thu Jul 28 01:53:04 2005
Return-path: <katie@spohr.debian.org>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
	id 1Dy3bO-0006Mp-00; Thu, 28 Jul 2005 01:18:50 -0700
From: Joey Hess <joeyh@debian.org>
To: 319620-close@bugs.debian.org
X-Katie: $Revision: 1.56 $
Subject: Bug#319620: fixed in mklibs 0.1.16
Message-Id: <E1Dy3bO-0006Mp-00@spohr.debian.org>
Sender: Archive Administrator <katie@spohr.debian.org>
Date: Thu, 28 Jul 2005 01:18:50 -0700
Delivered-To: 319620-close@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: mklibs
Source-Version: 0.1.16

We believe that the bug you reported is fixed in the latest version of
mklibs, which is due to be installed in the Debian FTP archive:

mklibs_0.1.16.dsc
  to pool/main/m/mklibs/mklibs_0.1.16.dsc
mklibs_0.1.16.tar.gz
  to pool/main/m/mklibs/mklibs_0.1.16.tar.gz
mklibs_0.1.16_all.deb
  to pool/main/m/mklibs/mklibs_0.1.16_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 319620@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joey Hess <joeyh@debian.org> (supplier of updated mklibs package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 23 Jul 2005 14:27:20 -0400
Source: mklibs
Binary: mklibs
Architecture: source all
Version: 0.1.16
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Joey Hess <joeyh@debian.org>
Description: 
 mklibs     - Shared library reduction script
Closes: 319620
Changes: 
 mklibs (0.1.16) unstable; urgency=low
 .
   * Apply patch from ths to not choke on LOCAL UND symbols. Closes: #319620
   * Add myself to uploaders.
   * Update standards version (no real changes).
   * Remove CVS dirs from source tarball.
Files: 
 3b61b4774c50e0f38590093194b479e8 658 devel optional mklibs_0.1.16.dsc
 9e85dcc1debf59fb71cb2ca92376d71a 9892 devel optional mklibs_0.1.16.tar.gz
 f33ac81a9b581be57e642be6ca9334a9 11068 devel optional mklibs_0.1.16_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC4pAJ2tp5zXiKP0wRAgSwAKC6rK5J8RbrvuRGTffVhtGMNHtpVACfSi5m
5uOA/lx/+9Opho6XHvpSkuc=
=EUXs
-----END PGP SIGNATURE-----



Reply to: