diff options
Diffstat (limited to 'dh_installdirs')
-rwxr-xr-x | dh_installdirs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_installdirs b/dh_installdirs index 8d33b10..766578e 100755 --- a/dh_installdirs +++ b/dh_installdirs @@ -88,7 +88,14 @@ init(options => { foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); - my $file=pkgfile($package,"dirs"); + my $file = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "dirs", + ); my $srcdir = $dh{SOURCEDIR} // default_sourcedir($package); install_dir($tmp) if compat(10); |