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

lintian: r70 - in trunk: checks debian



Author: djpig
Date: 2004-02-26 23:45:34 +0100 (Thu, 26 Feb 2004)
New Revision: 70

Modified:
   trunk/checks/binaries
   trunk/debian/changelog
Log:
don't complain about non-stripped kernel modules (Closes: #203373)
Patch by Dagfinn Ilmari Mannsaker


Modified: trunk/checks/binaries
===================================================================
--- trunk/checks/binaries	2004-02-26 22:11:31 UTC (rev 69)
+++ trunk/checks/binaries	2004-02-26 22:45:34 UTC (rev 70)
@@ -128,8 +128,8 @@
     # stripped?
     if ($info =~ m,not stripped\s*$,o) {
 	# Is it an object file (which generally can not be stripped),
-	# or perhaps a debugging package? 
-	unless ($file =~ m,\.o$, or $pkg =~ m/-dbg$/ or $pkg =~ m/debug/) {
+	# a kernel module, or perhaps a debugging package? 
+	unless ($file =~ m,\.k?o$, or $pkg =~ m/-dbg$/ or $pkg =~ m/debug/) {
 	    print "E: $pkg $type: unstripped-binary-or-object $file\n";
 	}
     } else {

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-02-26 22:11:31 UTC (rev 69)
+++ trunk/debian/changelog	2004-02-26 22:45:34 UTC (rev 70)
@@ -28,6 +28,9 @@
     + correct reference to debhelper manpage. It's debhelper(7), not
       debhelper(1). (Closes: #188245)
       Thanks to Brian Nelson for pointing this out.
+  * checks/binaries:
+    + don't complain about non-stripped kernel modules (Closes: #203373)
+      Patch by Dagfinn Ilmari Mannsaker
   * unpack/unpack-binpkg-l1: tar uses now h to signal hardlinks which
      breaks a lot of our code. so sed'ing it away (Closes: #234545)
      Many many thanks to Theodore Y. Ts'o for bringing this to our



Reply to: