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 | d6e1d2323492fd53d142c79c1816f132ec161b83 (patch) | |
tree | 71fb9778de5e8ef50446e7d32b07f088e4ede23a /dh_installlogrotate | |
parent | Adding upstream version 13.16. (diff) | |
download | debhelper-d6e1d2323492fd53d142c79c1816f132ec161b83.tar.xz debhelper-d6e1d2323492fd53d142c79c1816f132ec161b83.zip |
Adding upstream version 13.17.upstream/13.17
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dh_installlogrotate')
-rwxr-xr-x | dh_installlogrotate | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_installlogrotate b/dh_installlogrotate index fc3d60a..b5be855 100755 --- a/dh_installlogrotate +++ b/dh_installlogrotate @@ -42,7 +42,14 @@ init(); foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); - my $file=pkgfile($package,"logrotate"); + my $file = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "logrotate", + ); if ($file) { install_dir("$tmp/etc/logrotate.d"); |