Просмотр исходного кода

dpkg-source: switch to standard info() function for output

All buildd should use an updated sbuild by now, we can update the
format of dpkg-source's output without problems.
Raphael Hertzog лет назад: 17
Родитель
Сommit
5b0024349d
1 измененных файлов с 1 добавлено и 5 удалено
  1. 1 5
      scripts/dpkg-source.pl

+ 1 - 5
scripts/dpkg-source.pl

@@ -336,11 +336,7 @@ if ($options{'opmode'} eq 'build') {
     }
 
     # Unpack the source package (delegated to Dpkg::Source::Package::*)
-    #XXX: we have to keep the old output until sbuild stop parsing
-    # dpkg-source's output
-    #info(_g("extracting %s in %s"), $srcpkg->{'fields'}{'Source'}, $newdirectory);
-    printf(_g("%s: extracting %s in %s")."\n", $progname,
-           $srcpkg->{'fields'}{'Source'}, $newdirectory);
+    info(_g("extracting %s in %s"), $srcpkg->{'fields'}{'Source'}, $newdirectory);
     $srcpkg->extract($newdirectory);
 
     exit(0);