summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstallman9
1 files changed, 8 insertions, 1 deletions
diff --git a/installman b/installman
index 2c20790def..ef1470a1b4 100755
--- a/installman
+++ b/installman
@@ -157,7 +157,7 @@ sub pod2man {
local $_;
while (<T>)
{
- ++$has_pod and last if /^=(?:head\d+|item|pod)\b/;
+ ++$has_pod and last if /^=head1\b/;
}
close T;
@@ -223,3 +223,10 @@ sub rename {
link($from,$to) || return 0;
unlink($from);
}
+
+# Local variables:
+# cperl-indent-level: 4
+# indent-tabs-mode: nil
+# End:
+#
+# ex: set ts=8 sts=4 sw=4 et: