diff options
Diffstat (limited to 'pod/splitpod')
-rwxr-xr-x | pod/splitpod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/splitpod b/pod/splitpod index d5963bf411..10fd6afb11 100755 --- a/pod/splitpod +++ b/pod/splitpod @@ -1,6 +1,6 @@ #!/usr/bin/perl -use lib '../lib'; # If you haven't installed perl yet. +BEGIN { push @INC, '../lib' } # If you haven't installed perl yet. use Pod::Functions; local $/ = ''; @@ -48,15 +48,15 @@ for $f ( keys %syn ) { $body =~ s/^=back\s*//m if $has_back and !$has_over; open (POD, "> $name.pod") || die "can't open $name.pod: $!"; print POD <<EOF; -=head1 NAME +\=head1 NAME $orig - $flavor -=head1 SYNOPSIS +\=head1 SYNOPSIS $syn{$orig} -=head1 DESCRIPTION +\=head1 DESCRIPTION $body |