]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1584: * Fix a bug in quoted section parsing that put the quotes in the parsed version_4.1.62
authorjoey <joey>
Sun, 10 Aug 2003 03:27:20 +0000 (03:27 +0000)
committerjoey <joey>
Sun, 10 Aug 2003 03:27:20 +0000 (03:27 +0000)
     out section number. Closes: #204731

debian/changelog
dh_installman

index a9f3786e9274c50c8ba077b8d01fab37a70eca86..7b6585a3171f077e0540ef46dfbd93b7b96e6168 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (4.1.62) unstable; urgency=low
+
+  * Fix a bug in quoted section parsing that put the quotes in the parsed
+    out section number. Closes: #204731
+
+ -- Joey Hess <joeyh@debian.org>  Sat,  9 Aug 2003 22:25:23 -0400
+
 debhelper (4.1.61) unstable; urgency=low
 
   * dh_makeshlibs: only scan files matching *.so.* and *.so, not *.so*.
index 84b9469a2aabf2f49a4c5ea274bc988d558fa191..9adca670aba1eee9f173339486df8b4ed7a8d4e7 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;
                        }