]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_test*: inhibit logging. Closes: #478958 7.0.5
authorJoey Hess <joey@kodama.kitenet.net>
Thu, 1 May 2008 23:53:43 +0000 (19:53 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Thu, 1 May 2008 23:53:43 +0000 (19:53 -0400)
debian/changelog
dh_testdir
dh_testroot
dh_testversion

index b1870869eb085f128d4d23e18883a47ea2f2697f..291482328a3f9de23a4270da7c29f8fe20d48a89 100644 (file)
@@ -1,8 +1,9 @@
-debhelper (7.0.5) UNRELEASED; urgency=low
+debhelper (7.0.5) unstable; urgency=low
 
   * Convert copyright file to new format.
+  * dh_test*: inhibit logging. Closes: #478958
 
- -- Joey Hess <joeyh@debian.org>  Wed, 30 Apr 2008 18:19:13 -0400
+ -- Joey Hess <joeyh@debian.org>  Thu, 01 May 2008 19:52:00 -0400
 
 debhelper (7.0.4) unstable; urgency=low
 
index 451b9aebcca223e3a54c12d8cde0cabbd1746fb4..67ab9ea4ca0dd69e595dc9d8b65352d80761d57f 100755 (executable)
@@ -33,6 +33,7 @@ Test for the existence of these files too.
 =cut
 
 init();
+inhibit_log();
 
 foreach my $file ('debian/control', @ARGV) {
        if (! -e $file) {
index 346847688d02033e9cab336aa4b3d9d5287629f3..717d8841f1e54a1163b2c35baca089abdea46a79 100755 (executable)
@@ -18,6 +18,7 @@ L<fakeroot(1)>
 
 use strict;
 use Debian::Debhelper::Dh_Lib;
+inhibit_log();
 
 if ($< != 0) {
        error("You must run this as root (or use fakeroot).");
index a17f22e9ffe7f7add9a9f13be7c544bfc10af331..9c1c391d01e9a6b86c11a766bece99fe9b940f99 100755 (executable)
@@ -51,6 +51,7 @@ specified, dh_testversion does nothing.
 =cut
 
 init();
+inhibit_log();
 
 my($compare, $ver);