Browse Source

dpkg-scanpackages: Fix spurious overrides output

Split each package name and indent to the right.
Guillem Jover 17 years ago
parent
commit
f2d0f89f80
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scripts/dpkg-scanpackages.pl

+ 2 - 2
scripts/dpkg-scanpackages.pl

@@ -288,8 +288,8 @@ if (@samemaint) {
 }
 if (@spuriousover) {
     print(STDERR
-          _g(" -- Packages in override file but not in archive: --")."\n",
-          @spuriousover,
+          _g(" -- Packages in override file but not in archive: --"). "\n  ",
+          join(' ', @spuriousover),
           "\n") || die $!;
 }