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

[SCM] Debian package checker branch, master, updated. 2.4.3-240-g5a62e25



The following commit has been merged in the master branch:
commit 5a62e25d12264079d82d9b6605592a6740cf5275
Author: Raphael Geissert <atomo64@gmail.com>
Date:   Sat Feb 19 01:33:59 2011 -0600

    Ignore objdump-info's 'not a dynamic object' error
    
    Since binutils 2.21 objdump-info is now stricter as to how it responds
    to parameters. The collection script unconditionally passes the -T
    parameter which is specific to objects with dynamic symbols, which
    leads to an error when used on static objects.
    
    * collection/objdump-info:
      + [RG] Support stricter parameter handling of objdump-info from
        binutils 2.21.  Thanks, Andreas Beckmann.  (Closes: #604047)

diff --git a/collection/objdump-info b/collection/objdump-info
index cfa681e..710a728 100755
--- a/collection/objdump-info
+++ b/collection/objdump-info
@@ -87,6 +87,8 @@ while (<FILES>) {
 			$failed = 0;
 		    } elsif (m/File truncated$/) {
 			$failed = 0;
+		    } elsif (m/: not a dynamic object$/) {
+			$failed = 0;
 		    }
 		}
 		close PIPE;
diff --git a/debian/changelog b/debian/changelog
index 153bf34..5189753 100755
--- a/debian/changelog
+++ b/debian/changelog
@@ -151,6 +151,10 @@ lintian (2.5.0) UNRELEASED; urgency=low
     + [NT] Added check for dh_make(1) templates in the watch file.
     Thanks to Nelson A. de Oliveira for the report.  (Closes: #600866)
 
+  * collection/objdump-info:
+    + [RG] Support stricter parameter handling of objdump-info from
+      binutils 2.21.  Thanks, Andreas Beckmann.  (Closes: #604047)
+
   * data/changelog-file/ubuntu-dists:
     + [CW] Add natty as a valid Ubuntu distribution, and remove the EOLed
       intrepid and jaunty.  (Closes: #611439)

-- 
Debian package checker


Reply to: