summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2016-03-18 13:07:33 +0000
committerCorinna Vinschen <corinna@vinschen.de>2016-03-22 10:29:06 +0100
commit0b8d42946a15e50efb7cc9359c6e51187bd3793f (patch)
tree3d5dba4834880162b2e9bb9fb9e4cc302a885251 /etc
parentfe508576ef1f815b22177d7597796886b91ea0c8 (diff)
downloadcygnal-0b8d42946a15e50efb7cc9359c6e51187bd3793f.tar.gz
cygnal-0b8d42946a15e50efb7cc9359c6e51187bd3793f.tar.bz2
cygnal-0b8d42946a15e50efb7cc9359c6e51187bd3793f.zip
Fix generation of as.1 manual page so that it can be converted to DocBook format.
etc * texi2pod.pl: Add TARGET to the list of recognised man page sections.
Diffstat (limited to 'etc')
-rw-r--r--etc/texi2pod.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl
index cd0ffd943..dd3e181db 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;