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

[SCM] Debian package checker branch, master, updated. 2.3.0-42-gb20f3b5



The following commit has been merged in the master branch:
commit b20f3b559a2eace721320ea275ef2dadab6b24cd
Author: Russ Allbery <rra@debian.org>
Date:   Wed Dec 30 19:38:14 2009 -0800

    Additional fix to displaying the archive area
    
    "main" was being compared to "" to determine whether to display the
    archive area for binary packages.  Compare the mangled variables to
    fix the logic.

diff --git a/reporting/templates/maintainer.tmpl b/reporting/templates/maintainer.tmpl
index 0cf8e79..7179406 100644
--- a/reporting/templates/maintainer.tmpl
+++ b/reporting/templates/maintainer.tmpl
@@ -98,8 +98,7 @@
                 }
 
                 my $bin_version = '';
-                unless ($info->{version} eq $version
-                        and $info->{area} eq $firstarea) {
+                unless ($info->{version} eq $version and $area eq $firstarea) {
                     $bin_version = " ($info->{version}; $info->{area})";
                 }
 

-- 
Debian package checker


Reply to: