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

lintian: r267 - in trunk: checks debian



Author: jeroen
Date: 2004-05-12 01:26:35 +0200 (Wed, 12 May 2004)
New Revision: 267

Modified:
   trunk/checks/shared-libs
   trunk/debian/changelog
Log:
  * checks/shared-libs:
    + [JvW] Fix the pic-detection code (Closes: #185816)


Modified: trunk/checks/shared-libs
===================================================================
--- trunk/checks/shared-libs	2004-05-10 15:46:06 UTC (rev 266)
+++ trunk/checks/shared-libs	2004-05-11 23:26:35 UTC (rev 267)
@@ -69,12 +69,12 @@
 
     if (m/^-- (\S+)\s*$/o) {
 	$file = $1; $file =~ s,^(\./)?,,;
-    } elsif (m/^\s*SONAME\s*(\S+)/o) {
+    } elsif (m/^\s*SONAME\s+(\S+)/o) {
 	$SONAME{$file} = $1;
-    } elsif (m/^\s+\d+\s+\.rela?\.text/o) {
+    } elsif (m/^\s*TEXTREL\s/o) {
 	tag "shlib-with-non-pic-code", "$file"
 	    if exists $ldso_dir{dirname($file)};
-    } elsif (m/^\s*INTERP\b/) {
+    } elsif (m/^\s*INTERP\s/) {
 	$INTERP{$file} = 1;
     } else {
         $objsomething{$file} = 1;

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-05-10 15:46:06 UTC (rev 266)
+++ trunk/debian/changelog	2004-05-11 23:26:35 UTC (rev 267)
@@ -38,6 +38,7 @@
   * checks/shared-libs:
     + [FL] Don't report shlib-with-executable-bit and
       shlib-with-bad-permissions on symbolic links to such files
+    + [JvW] Fix the pic-detection code (Closes: #185816)
 
   * debian/{control,rules}, frontend/lintian:
     + [JvW] Insert version number at package build time, no need to commit a
@@ -57,7 +58,7 @@
     + [JvW] Fix two lintian warnings in lintian itself by touching files only
       on clean target, and not distributing them in the source
 
- -- Debian Lintian Maintainers <lintian-maint@debian.org>  Wed, 05 May 2004 16:54:46 +0200
+ -- Debian Lintian Maintainers <lintian-maint@debian.org>  Wed, 12 May 2004 01:26:07 +0200
 
 lintian (1.23.0) unstable; urgency=low
 



Reply to: