From: Joey Hess Date: Mon, 14 Feb 2011 18:22:14 +0000 (-0400) Subject: Fix logging at end of an override target that never actually runs the overridden... X-Git-Tag: 8.1.2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4a7ce74b4a790dfea5d69cab9a5a7d8f89693232;p=debhelper.git Fix logging at end of an override target that never actually runs the overridden command. Closes: #613418 --- diff --git a/debian/changelog b/debian/changelog index 58e8d55..06adf08 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (8.1.2) UNRELEASED; urgency=low + + * Fix logging at end of an override target that never actually runs + the overridden command. Closes: #613418 + + -- Joey Hess Mon, 14 Feb 2011 14:21:38 -0400 + debhelper (8.1.1) unstable; urgency=low * dh_strip, dh_makeshlibs: use triplet-objdump, triplet-objcopy and diff --git a/dh b/dh index 9e6fa04..5a6679e 100755 --- a/dh +++ b/dh @@ -689,8 +689,8 @@ sub run { if ($override_command ne 'dh_clean') { my %packages=map { $_ => 1 } @packages; map { delete $packages{$_} } @exclude; - commit_override_log(keys %packages); write_log($override_command, keys %packages); + commit_override_log(keys %packages); } delete $ENV{DH_INTERNAL_OPTIONS};