summaryrefslogtreecommitdiffstats
path: root/dh_bugfiles
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xdh_bugfiles9
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_bugfiles b/dh_bugfiles
index 6222922..7e4fd34 100755
--- a/dh_bugfiles
+++ b/dh_bugfiles
@@ -87,7 +87,14 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
# package in question
my %bugfiles=();
while (my ($type, $pkgfilename) = each(%bugfile_types)) {
- my $file=pkgfile($package,$pkgfilename);
+ my $file = pkgfile(
+ {
+ 'named' => 0,
+ 'support-architecture-restriction' => 0,
+ },
+ $package,
+ $pkgfilename,
+ );
if ($file) {
$bugfiles{$type}=$file;
}