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_installdebconf | |
parent | Adding upstream version 13.16. (diff) | |
download | debhelper-upstream/13.17.tar.xz debhelper-upstream/13.17.zip |
Adding upstream version 13.17.upstream/13.17
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dh_installdebconf')
-rwxr-xr-x | dh_installdebconf | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/dh_installdebconf b/dh_installdebconf index 79d50d2..4055513 100755 --- a/dh_installdebconf +++ b/dh_installdebconf @@ -191,8 +191,22 @@ if (defined($dh{U_PARAMS})) { foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); - my $config=pkgfile($package,"config"); - my $templates=pkgfile($package,"templates"); + my $config = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "config", + ); + my $templates = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "templates", + ); install_dir("$tmp/DEBIAN"); |