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

[SCM] Debian package checker branch, master, updated. 2.2.14-55-g744f3c4



The following commit has been merged in the master branch:
commit 744f3c428383cd6b149a52aa1b446a4d92b52255
Author: Russ Allbery <rra@debian.org>
Date:   Sun Sep 13 22:10:20 2009 -0700

    Allow ld.so to be in /lib32 or /lib64
    
    The exclusion from shared-lib-without-dependency-information of
    ld.so didn't allow for /lib32 or /lib64.

diff --git a/checks/binaries b/checks/binaries
index 2178d9b..9acb5c6 100644
--- a/checks/binaries
+++ b/checks/binaries
@@ -305,7 +305,7 @@ foreach my $file (sort keys %{$info->file_info}) {
             # Some exceptions: detached debugging information and the dynamic
             # loader (which itself has no dependencies).
             next if ($file =~ m%^\./usr/lib/debug/%);
-            next if ($file =~ m%^\./lib/(?:[\w/]+/)?ld-[\d.]+\.so$%);
+            next if ($file =~ m%^\./lib(?:|32|64)/(?:[\w/]+/)?ld-[\d.]+\.so$%);
 	    tag "shared-lib-without-dependency-information", "$file";
 	} else {
 	    # Some exceptions: files in /boot, /usr/lib/debug/*, named *-static or

-- 
Debian package checker


Reply to: