diff options
author | joey <joey> | 2003-07-03 18:11:16 +0000 |
---|---|---|
committer | joey <joey> | 2003-07-03 18:11:16 +0000 |
commit | b6faf9b91d6c9ee40a648697db808cb2ce4b40cf (patch) | |
tree | d57170871f83b8e4bc8a9166901fbe87f06e6cf5 | |
parent | 8fbfd5ac20e05711e01d11f188f45228d09b1a23 (diff) | |
download | debhelper-b6faf9b91d6c9ee40a648697db808cb2ce4b40cf.tar.gz |
r592: * dh_installman: Don't require trailing whitespace after the seciton number
in the TH line.
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | dh_installman | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 22b46915..dce23075 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 <joeyh@debian.org> 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 41fa6408..59db6838 100755 --- a/dh_installman +++ b/dh_installman @@ -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; } |