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

lintian: r1403 - trunk/checks



Author: djpig
Date: 2008-06-20 01:07:05 +0200 (Fri, 20 Jun 2008)
New Revision: 1403

Modified:
   trunk/checks/binaries
Log:
* checks/binaries:
  + Fix wrong test for absense of NEEDED info. If A implies
    B, testing for A && B makes no sense, assume A || B was
    meant


Modified: trunk/checks/binaries
===================================================================
--- trunk/checks/binaries	2008-06-19 22:58:22 UTC (rev 1402)
+++ trunk/checks/binaries	2008-06-19 23:07:05 UTC (rev 1403)
@@ -262,7 +262,7 @@
 
     # statically linked?
     my @needed;
-    if (!exists($NEEDED{$file}) && !defined($NEEDED{$file})) {
+    if (!exists($NEEDED{$file}) || !defined($NEEDED{$file})) {
 	if ($info =~ m/shared object/o) {
             # Some exceptions: detached debugging information and the dynamic
             # loader (which itself has no dependencies).


Reply to: