]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1578: * dh_installman: support .TH lines with quotes. Closes: #204527 version_4.1.59
authorjoey <joey>
Fri, 8 Aug 2003 00:39:40 +0000 (00:39 +0000)
committerjoey <joey>
Fri, 8 Aug 2003 00:39:40 +0000 (00:39 +0000)
debian/changelog
dh_installman

index 0b33ce8f81b7526baa34cdc1a1a9e678ecb66e29..f4748dd0bbeae43af4fe8ace6a5e6164e1f16bfd 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (4.1.59) unstable; urgency=low
+
+  * dh_installman: support .TH lines with quotes. Closes: #204527
+
+ -- Joey Hess <joeyh@debian.org>  Thu,  7 Aug 2003 20:39:36 -0400
+
 debhelper (4.1.58) unstable; urgency=low
 
   * Typo, Closes: #203907
index 6ee000919ec9509952a51c3082372286a080949c..84b9469a2aabf2f49a4c5ea274bc988d558fa191 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*)/) {
+                       if (/^\.TH\s+\S+\s+"?(\d+\S*)"?/) {
                                $section=$1;
                                last;
                        }