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

Bug#412406: outdated-autotools-helper-file: false positive if autotools-dev is first build dependency



Package: lintian
Version: 1.23.27
Severity: normal
Tags: patch

If autotools-dev is the first in the list of build dependencies,
outdated-autotools-helper-file is wrongly reported. The attached patch
fixes this.

Cheers, Til
--- cruft.orig	2007-02-25 22:01:52.237312692 +0100
+++ cruft	2007-02-25 22:02:11.796878996 +0100
@@ -58,7 +58,7 @@
     my $bd;
     chop($bd = <IN>);
     close IN;
-    $atdinbd = 1 if ($bd =~ /,\s*autotools-dev/);
+    $atdinbd = 1 if ($bd =~ /\s*autotools-dev/);
 }
 
 my $cwd = cwd;

Reply to: