From: joey Date: Thu, 3 Jul 2003 18:11:16 +0000 (+0000) Subject: r592: * dh_installman: Don't require trailing whitespace after the seciton number X-Git-Tag: version_2.0.101~7 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b6faf9b91d6c9ee40a648697db808cb2ce4b40cf;p=debhelper.git r592: * dh_installman: Don't require trailing whitespace after the seciton number in the TH line. --- diff --git a/debian/changelog b/debian/changelog index 22b4691..dce2307 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (4.1.49) unstable; urgency=low + + * dh_installman: Don't require trailing whitespace after the seciton number + in the TH line. + + -- Joey Hess Thu, 3 Jul 2003 14:08:41 -0400 + debhelper (4.1.48) unstable; urgency=low * dh_python typo fix Closes: #197679 diff --git a/dh_installman b/dh_installman index 41fa640..59db683 100755 --- a/dh_installman +++ b/dh_installman @@ -114,7 +114,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { open (IN, $page) or die "$page: $!"; } while () { - if (/^\.TH\s+\S+\s+(\d+\S*)\s/) { + if (/^\.TH\s+\S+\s+(\d+\S*)/) { $section=$1; last; }