diff options
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"); |