]> git.donarmstrong.com Git - debhelper.git/commitdiff
r592: * dh_installman: Don't require trailing whitespace after the seciton number
authorjoey <joey>
Thu, 3 Jul 2003 18:11:16 +0000 (18:11 +0000)
committerjoey <joey>
Thu, 3 Jul 2003 18:11:16 +0000 (18:11 +0000)
     in the TH line.

debian/changelog
dh_installman

index 22b469157caec9caead57266f0a61e72f3b55400..dce23075b43bfd545651c6f7711841d79f1dd869 100644 (file)
@@ -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 <joeyh@debian.org>  Thu,  3 Jul 2003 14:08:41 -0400
+
 debhelper (4.1.48) unstable; urgency=low
 
   * dh_python typo fix Closes: #197679
index 41fa6408548d5f455d83e37cf041f663d0eeadc0..59db6838742178fac5d234f3d3095816cb3741b2 100755 (executable)
@@ -114,7 +114,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                        open (IN, $page) or die "$page: $!";
                }
                while (<IN>) {
-                       if (/^\.TH\s+\S+\s+(\d+\S*)\s/) {
+                       if (/^\.TH\s+\S+\s+(\d+\S*)/) {
                                $section=$1;
                                last;
                        }