summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rwxr-xr-xdh_installmanpages2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 97200043..8f44ef43 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+debhelper (9.20151220+unreleased) UNRELEASED; urgency=medium
+
+ * dh_installmanpages: Fix call to getpackages. Thanks to
+ Niko Tyni for reporting the issue. (Closes: #808603)
+
+ -- Niels Thykier <niels@thykier.net> Mon, 21 Dec 2015 13:36:16 +0000
+
debhelper (9.20151220) unstable; urgency=medium
* dh_strip: Document that dbgsym packages are built by
diff --git a/dh_installmanpages b/dh_installmanpages
index ade16047..358f3247 100755
--- a/dh_installmanpages
+++ b/dh_installmanpages
@@ -136,7 +136,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
# Find all filenames that look like man pages.
@manpages=();
- @allpackages=getpackages('');
+ @allpackages=getpackages() if not @allpackaes;
find(\&find_man,'.'); # populates @manpages
foreach my $page (@manpages) {