diff options
author | joey <joey> | 2003-08-08 00:39:40 +0000 |
---|---|---|
committer | joey <joey> | 2003-08-08 00:39:40 +0000 |
commit | 1b294974795510843d19adc178e936eb4f2c65bb (patch) | |
tree | afb24f6c14768e06555cde3b41b09c3d54688a9f /dh_installman | |
parent | 37c6bda5a2cfb98d77ba9b480e81456ef7369f80 (diff) | |
download | debhelper-1b294974795510843d19adc178e936eb4f2c65bb.tar.gz |
r1578: * dh_installman: support .TH lines with quotes. Closes: #204527version_4.1.59
Diffstat (limited to 'dh_installman')
-rwxr-xr-x | dh_installman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installman b/dh_installman index 6ee00091..84b9469a 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*)/) { + if (/^\.TH\s+\S+\s+"?(\d+\S*)"?/) { $section=$1; last; } |