The following commit has been merged in the master branch:
commit b20f3b559a2eace721320ea275ef2dadab6b24cd
Author: Russ Allbery <[email protected]>
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
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]