The following commit has been merged in the master branch:
commit 7df211874ca2223d8d3e6554ad611ad6ac26e530
Author: Guillem Jover <guil...@debian.org>
Date:   Mon Jun 15 01:18:02 2009 +0200

    dpkg-scanpackages: Move missing override warning near the spurious one
    
    They are related so better to have them closer.

diff --git a/scripts/dpkg-scanpackages.pl b/scripts/dpkg-scanpackages.pl
index fc9d86e..7aa5345 100755
--- a/scripts/dpkg-scanpackages.pl
+++ b/scripts/dpkg-scanpackages.pl
@@ -256,10 +256,6 @@ for my $p (sort keys %packages) {
 }
 close(STDOUT) or syserr(_g("Couldn't close stdout"));
 
-if (@missingover) {
-    warning(_g("Packages in archive but missing from override file:"));
-    warning("  %s", join(' ', @missingover));
-}
 if (@changedmaint) {
     warning(_g("Packages in override file with incorrect old maintainer 
value:"));
     warning($_) foreach (@changedmaint);
@@ -268,6 +264,10 @@ if (@samemaint) {
     warning(_g("Packages specifying same maintainer as override file:"));
     warning($_) foreach (@samemaint);
 }
+if (@missingover) {
+    warning(_g("Packages in archive but missing from override file:"));
+    warning("  %s", join(' ', @missingover));
+}
 if (@spuriousover) {
     warning(_g("Packages in override file but not in archive:"));
     warning("  %s", join(' ', @spuriousover));

-- 
dpkg's main repository


-- 
To UNSUBSCRIBE, email to debian-dpkg-cvs-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to