From f92915e39eef5b24698881576121356ccba0b7c8 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 25 Aug 2009 13:19:17 -0400 Subject: [PATCH] dh_installdocs: Loosen the Document field parsing, to accept everything doc-base *really* accepts in a doc id (not just what it's documented to accept). Closes: #543499 --- debian/changelog | 3 +++ dh_installdocs | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 34cb71f..adb1b2f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,9 @@ debhelper (7.3.16) UNRELEASED; urgency=low * dh_desktop: Clarify in man page why it's a no-op. Closes: #543364 + * dh_installdocs: Loosen the Document field parsing, to accept + everything doc-base *really* accepts in a doc id (not just what + it's documented to accept). Closes: #543499 -- Joey Hess Mon, 24 Aug 2009 12:59:02 -0400 diff --git a/dh_installdocs b/dh_installdocs index 8795411..1226cf8 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -200,7 +200,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # Parse the file to get the doc id. open (IN, "debian/$fn") || die "Cannot read debian/$fn."; while () { - if (/^Document:\s+([-+.a-z0-9]+)/) { + s/\s*$//; + if (/^Document\s*:\s*(.*)/) { $doc_ids{$fn}=$1; last; } -- 2.39.2