summaryrefslogtreecommitdiff
path: root/dh_installdocs
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-11-12 13:30:14 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-11-12 13:30:14 -0500
commit1aeccc3f0723a2d9a4fd38752258b82d060cd663 (patch)
tree166f0b58c8035e8c347e736d7805a56c2416cea5 /dh_installdocs
parent75ebf8cab2d9eda3b94285a00fbf170c74363754 (diff)
dh_installdocs: Warn if a doc-base file cannot be parsed to find a document id. Closes: #555677
Diffstat (limited to 'dh_installdocs')
-rwxr-xr-xdh_installdocs3
1 files changed, 3 insertions, 0 deletions
diff --git a/dh_installdocs b/dh_installdocs
index d8ebe62e..5f4abfdb 100755
--- a/dh_installdocs
+++ b/dh_installdocs
@@ -280,6 +280,9 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
last;
}
}
+ if (! exists $doc_ids{$fn}) {
+ warning("Could not parse $fn for doc-base Document id; skipping");
+ }
close IN;
}
closedir(DEB);