diff options
author | Niels Thykier <niels@thykier.net> | 2017-06-28 13:09:08 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2017-06-29 11:37:05 +0000 |
commit | 4644dc79ee4cd7649910e01d7912319f2a6126be (patch) | |
tree | 1e549eb19cc2bff4dbd2364c9c5d27f8c5823bc4 /dh_installinfo | |
parent | 29bc4cdb26b54e34ff011c949763068b162118d8 (diff) | |
download | debhelper-4644dc79ee4cd7649910e01d7912319f2a6126be.tar.gz |
dh_installinfo: Log installed info files
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_installinfo')
-rwxr-xr-x | dh_installinfo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installinfo b/dh_installinfo index 08a68f69..247f6160 100755 --- a/dh_installinfo +++ b/dh_installinfo @@ -57,7 +57,7 @@ my $nodocs = is_build_profile_active('nodoc') ? 1 : 0; # or dh_missing might make noise. $error_handler = \&glob_expand_error_handler_silently_ignore if $nodocs; -foreach my $package (@{$dh{DOPACKAGES}}) { +foreach my $package (getpackages()) { my $tmp=tmpdir($package); my $file=pkgfile($package,"info"); @@ -71,7 +71,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { push @info, @ARGV; } - next if $nodocs; + next if not process_pkg($package) or $nodocs; if (@info) { install_dir("$tmp/usr/share/info"); |