summaryrefslogtreecommitdiff
path: root/dh_installman
diff options
context:
space:
mode:
Diffstat (limited to 'dh_installman')
-rwxr-xr-xdh_installman4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installman b/dh_installman
index 9c71774f..e48ff6aa 100755
--- a/dh_installman
+++ b/dh_installman
@@ -97,14 +97,14 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
open (IN, $page) or die "$page: $!";
}
while (<IN>) {
- if (/^\.TH\s+[^ ]+\s+(\d+[^ ]*)\s/) {
+ if (/^\.TH\s+\S+\s+(\d+\S*)\s/) {
$section=$1;
last;
}
}
# Failing that, we can try to get it from the filename.
if (! $section) {
- ($section)=$basename=~m/.*\.([1-9][^ ]*)/;
+ ($section)=$basename=~m/.*\.([1-9]\S*)/;
}
# Now get the numeric component of the section.