diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:26 +0000 |
commit | 36b03e2bee4497aef85033f4f900f5d89d5dc55e (patch) | |
tree | ec9a0e0972bd08cc628efaa53161b44f9361dd37 /dh_installlogcheck | |
parent | Adding debian version 13.16. (diff) | |
download | debhelper-36b03e2bee4497aef85033f4f900f5d89d5dc55e.tar.xz debhelper-36b03e2bee4497aef85033f4f900f5d89d5dc55e.zip |
Merging upstream version 13.17.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dh_installlogcheck')
-rwxr-xr-x | dh_installlogcheck | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_installlogcheck b/dh_installlogcheck index bf1f779..fb6e655 100755 --- a/dh_installlogcheck +++ b/dh_installlogcheck @@ -68,7 +68,14 @@ foreach my $package (@{$dh{DOPACKAGES}}) { violations.d violations.ignore.d}) { my $typenod=$type; $typenod=~s/\.d//; - my $logcheck=pkgfile($package,"logcheck.$typenod"); + my $logcheck = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "logcheck.$typenod", + ); if ($logcheck) { my $packagenodot=pkgfilename($package); # run-parts.. $packagenodot=~s/\./_/g; |