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

[SCM] Debian package checker branch, master, updated. 2.0.0-rc2-7-gbf0a6a3



The following commit has been merged in the master branch:
commit 8bc3312c6ea98f7e147be7faf87b1d050169cdd7
Author: Frank Lichtenheld <djpig@debian.org>
Date:   Fri Sep 26 21:38:10 2008 +0200

    reporting/harness: Include STDERR output in lintian.log

diff --git a/debian/changelog b/debian/changelog
index a57d763..f65b50a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,6 +14,9 @@ lintian (2.0.0) UNRELEASED; urgency=low
 
   * man/lintian.1:
     + [FL] Remove a stray backslash.
+  
+  * reporting/harness:
+    + [FL] Include STDERR output in lintian.log.
 
  -- Russ Allbery <rra@debian.org>  Wed, 24 Sep 2008 11:13:27 -0700
 
diff --git a/reporting/harness b/reporting/harness
index c5ce5d2..e8ba97b 100755
--- a/reporting/harness
+++ b/reporting/harness
@@ -116,7 +116,7 @@ unless ($opt_f || $opt_c) {
 
 if ($opt_f) { # check all packages
   Log("Running Lintian over all packages...");
-  my $cmd = "$lintian_cmd -I -E -v -a --show-overrides -U changelog-file >$lintian_log";
+  my $cmd = "$lintian_cmd -I -E -v -a --show-overrides -U changelog-file >$lintian_log 2>&1";
   Log("Executing $cmd");
   my $res = (system($cmd) >> 8);
   (($res == 0) or ($res == 1))
@@ -233,7 +233,7 @@ if ($opt_i) { # process changes only
 
     # run Lintian over the newly introduced or changed packages
     Log("Running Lintian over newly introduced and changed packages...");
-    my $cmd = "$lintian_cmd -I -E -v --show-overrides -p $list_file -U changelog-file >>$lintian_log";
+    my $cmd = "$lintian_cmd -I -E -v --show-overrides -p $list_file -U changelog-file >>$lintian_log 2>&1";
     Log("Executing $cmd");
     my $res = (system($cmd) >> 8);
     (($res == 0) or ($res == 1))

-- 
Debian package checker


Reply to: