Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-06-05 21:00:23 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-06-05 21:00:23 +0400
commit19da45f22bfc1937f0fec8bf06c8f4de1f68a3b9 (patch)
treef352a90573f1296a5e7e3d8866da88699f9eb8d4
parentaeadb3285d1210777cb946888e6e690426e588b6 (diff)
Make texi2pod.pl look for section "AUTHORS" rather than "AUTHOR", as
the corresponding sections in the man page have been renamed that way. Originally committed as revision 23493 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xdoc/texi2pod.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index 5964449a9e..e0bc615c89 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -304,7 +304,7 @@ $sects{NAME} = "$fn \- $tl\n";
$sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES};
for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS EXAMPLES ENVIRONMENT FILES
- BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) {
+ BUGS NOTES FOOTNOTES SEEALSO AUTHORS COPYRIGHT)) {
if(exists $sects{$sect}) {
$head = $sect;
$head =~ s/SEEALSO/SEE ALSO/;