diff options
author | Nick Clifton <nickc@redhat.com> | 2016-03-18 13:07:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-03-18 13:07:33 +0000 |
commit | 6387924ae329fe2a89abb48b9868a340e23a9630 (patch) | |
tree | 44f8b75a951a84544301ef7afff46b4d163cdcda /etc/texi2pod.pl | |
parent | 45821bef0977a7436aa5cd5f37f5a178d446d675 (diff) | |
download | binutils-6387924ae329fe2a89abb48b9868a340e23a9630.zip binutils-6387924ae329fe2a89abb48b9868a340e23a9630.tar.gz binutils-6387924ae329fe2a89abb48b9868a340e23a9630.tar.bz2 |
Fix generation of as.1 manual page so that it can be converted to DocBook format.
gas * doc/as.texinfo: Place the target specific command line options
into their own man page section.
etc * texi2pod.pl: Add TARGET to the list of recognised man page
sections.
Diffstat (limited to 'etc/texi2pod.pl')
-rw-r--r-- | etc/texi2pod.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl index cd0ffd9..dd3e181 100644 --- a/etc/texi2pod.pl +++ b/etc/texi2pod.pl @@ -340,7 +340,7 @@ die "No filename or title\n" unless defined $fn && defined $tl; $sects{NAME} = "$fn \- $tl\n"; $sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES}; -for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES +for $sect (qw(NAME SYNOPSIS TARGET DESCRIPTION OPTIONS ENVIRONMENT FILES BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) { if(exists $sects{$sect}) { $head = $sect; |