diff options
author | Joey Hess <joey@kitenet.net> | 2011-02-14 14:22:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-02-14 14:22:14 -0400 |
commit | 4a7ce74b4a790dfea5d69cab9a5a7d8f89693232 (patch) | |
tree | 9bc568418d3bb96b208852a13b6a4a7dbd7e6073 /dh | |
parent | 462d30c34c365863606d9fb454b49251a9b4bf9b (diff) | |
download | debhelper-4a7ce74b4a790dfea5d69cab9a5a7d8f89693232.tar.gz |
Fix logging at end of an override target that never actually runs the overridden command. Closes: #613418
Diffstat (limited to 'dh')
-rwxr-xr-x | dh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}; |