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

lintian: r914 - in trunk: debian reporting



Author: rra
Date: 2007-06-19 07:33:25 +0200 (Tue, 19 Jun 2007)
New Revision: 914

Modified:
   trunk/debian/changelog
   trunk/reporting/html_reports
Log:
* reporting/html_reports:
  + [RA] Fix a Perl warning when generating the clean maintainer pages.

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2007-06-18 17:45:07 UTC (rev 913)
+++ trunk/debian/changelog	2007-06-19 05:33:25 UTC (rev 914)
@@ -35,12 +35,15 @@
   * checks/shared_libs:
     + [RA] Report the correct file for shlib-with-nonpic-code.
 
+  * reporting/html_reports:
+    + [RA] Fix a Perl warning when generating the clean maintainer pages.
+
   * unpack/unpack-binpkg-l1:
     + [RA] Sort the output of tar tfv by filename so that the lintian
       output will be stable regardless of the hash order of the directory
       when the tar file was built.
 
- -- Russ Allbery <rra@debian.org>  Mon, 18 Jun 2007 10:44:45 -0700
+ -- Russ Allbery <rra@debian.org>  Mon, 18 Jun 2007 22:33:12 -0700
 
 lintian (1.23.31) unstable; urgency=low
 

Modified: trunk/reporting/html_reports
===================================================================
--- trunk/reporting/html_reports	2007-06-18 17:45:07 UTC (rev 913)
+++ trunk/reporting/html_reports	2007-06-19 05:33:25 UTC (rev 914)
@@ -448,7 +448,7 @@
 # -------------------------------
 
 sub open_maintainer {
-    return if $_[0] eq $maint_file;
+    return if ($maint_file && $_[0] eq $maint_file);
     close_maintainer();
 
     $maint_file = $_[0];



Reply to: