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

lintian: r995 - in trunk: checks debian



Author: he
Date: 2007-11-29 21:19:50 +0100 (Thu, 29 Nov 2007)
New Revision: 995

Modified:
   trunk/checks/binaries
   trunk/debian/changelog
Log:
  + [HE] When checking that a lib is linked against libc, search for
         libc.so, not any library beginning with libc. Thanks for
         the bug and patch to Ruben Porras <nahoo82@gmail.com>. (Closes:
         #448652)

Modified: trunk/checks/binaries
===================================================================
--- trunk/checks/binaries	2007-11-29 13:11:53 UTC (rev 994)
+++ trunk/checks/binaries	2007-11-29 20:19:50 UTC (rev 995)
@@ -270,7 +270,7 @@
 #		}
 #	    }
 
-	    if ($lib =~ m/^libc/o) {
+	    if ($lib =~ m/^libc\.so/o) {
 		$no_libc = 0;
 	    }
 	}

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2007-11-29 13:11:53 UTC (rev 994)
+++ trunk/debian/changelog	2007-11-29 20:19:50 UTC (rev 995)
@@ -3,6 +3,10 @@
   * checks/binaries:
     + [HE] Fix RegEx to re-enable 'binary-in-etc' and
            'arch-dependent-file-in-usr-share' checks. (Closes: #452336)
+    + [HE] When checking that a lib is linked against libc, search for
+           libc.so, not any library beginning with libc. Thanks for
+           the bug and patch to Ruben Porras <nahoo82@gmail.com>. (Closes:
+           #448652)
   * checks/common_data.pm:
     + [RA] Add Dm-Upload-Allowed as a recognized control field.
   * checks/control-files:



Reply to: